Skip to main content
GET
/
batches
/
{batch_id}
/
evidences
List all evidences for a batch
curl --request GET \
  --url https://app.gomangrove.com/api/v1/batches/{batch_id}/evidences \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": 1,
      "url": "https://app.gomangrove.com/....",
      "evidence_type": "file",
      "name": "Receipt.pdf"
    },
    {
      "id": 2,
      "url": "https://www.example.com",
      "evidence_type": "url",
      "name": "External Reference"
    }
  ],
  "info": {
    "items": 2,
    "page_size": 10,
    "total_items": 2,
    "current_page": 1,
    "next_page": null,
    "previous_page": null,
    "total_pages": 1,
    "sort": [],
    "filter": []
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

batch_id
string
required

Batch friendly ID (e.g., bat_abc123def456)

Query Parameters

page
integer<int32>
default:1
page_size
integer<int32>
default:10

Response

200

data
object[]
info
object