| Field | Required | Description |
|---|---|---|
| api-token | Yes | Authentication token provided by VasyERP |
| limit | Yes | Number of Transporter records to retrieve per request |
| offset | Yes | Number of records to skip for pagination |
| branchId | Yes | Records in that perticular branch |
limit and offset parameters to retrieve large datasets efficiently.curl --location '/api/v1/contact/transport?limit=10&offset=0&branchId=24448' \
--header 'api-token: {{.in-api-token}}'{
"status": true,
"message": "Contact List",
"code": "200",
"response": {
"totalCount": 9,
"items": [
{
"contactId": 16600265,
"contactName": "demo hil"
},
{
"contactId": 16600246,
"contactName": "Demo Hello"
},
{
"contactId": 13855881,
"contactName": "Vivek Transport VasyERP"
},
{
"contactId": 13851674,
"contactName": "EKART EKART Logistic"
},
{
"contactId": 13851633,
"contactName": "Vivek Chavda VasyERP"
},
{
"contactId": 13783729,
"contactName": "samun heavy wheels"
},
{
"contactId": 13771613,
"contactName": "mukesh The Horse company"
},
{
"contactId": 13232985,
"contactName": "HItesh Varma Hiteshtransport"
},
{
"contactId": 11694996,
"contactName": "Shivansh Sandesh Carriers"
}
]
}
}