| Field | Required | Description |
|---|---|---|
| api-token | Yes | Authentication token provided by VasyERP |
| limit | Yes | Number of supplier 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/suppliers?limit=10&offset=0&branchId=24448' \
--header 'api-token: {{.in-api-token}}'{
"status": true,
"message": "Contact List",
"code": "200",
"response": {
"totalCount": 132,
"items": [
{
"contactId": 5519848,
"contactName": " Sangita singh"
},
{
"contactId": 5313891,
"contactName": " Umesh"
},
{
"contactId": 5313884,
"contactName": " Anika Enterprises"
},
{
"contactId": 5313883,
"contactName": " GOPALA TRADERS"
},
{
"contactId": 5313882,
"contactName": " PRIMEWEST MARKETING PRIVATE LIMITED"
},
{
"contactId": 5313881,
"contactName": " Krishna Agencies"
},
{
"contactId": 5313880,
"contactName": " Sattviki Association"
},
{
"contactId": 5313879,
"contactName": " Mahesh Kumar Arun Kumar"
},
{
"contactId": 5313878,
"contactName": " GLOBAL SYSTEMS AND TECHNOLOGY"
},
{
"contactId": 5313877,
"contactName": " Aruna Agencies"
}
]
}
}