List Suppliers
GET
/v1/suppliers
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
pageSize
integer
optional
Example:
10
page
string
optional
Example:
0
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/suppliers?pageSize=10&page=0'
Responses
🟢200OK
application/json
Body
pagination
object
required
next
integer
required
previous
null
required
count
integer
required
data
array [object {10}]
required
uuid
string
required
organizationUuid
string
required
createdAt
string
required
updatedAt
string
required
deletedAt
string
required
name
string
required
email
string
required
phone
string
required
isInternal
boolean
required
taxId
string
required
datetime
string
required
Example
{
"pagination": {
"next": 1,
"previous": null,
"count": 4
},
"data": [
{
"uuid": "2deb060d-003d-4ab4-a66c-b755e60244c9",
"organizationUuid": "be8f0898-6e56-4bcf-8853-bae89c844057",
"createdAt": "2023-11-30 16:44:02.802",
"updatedAt": "2023-11-30 16:44:02.802",
"deletedAt": "null",
"name": "Interno",
"email": null,
"phone": null,
"isInternal": true,
"taxId": null
},
{
"uuid": "d233472d-0154-486e-a8a3-94bd7a9d2543",
"organizationUuid": "be8f0898-6e56-4bcf-8853-bae89c844057",
"createdAt": "2023-12-01 16:05:22.451",
"updatedAt": "2024-02-13 22:24:34.077",
"deletedAt": "null",
"name": "ETRUSCA",
"email": null,
"phone": null,
"isInternal": false,
"taxId": null
},
{
"uuid": "32fa8b4d-474f-4e37-821a-c51bf1f3ea46",
"organizationUuid": "be8f0898-6e56-4bcf-8853-bae89c844057",
"createdAt": "2023-12-01 16:05:22.457",
"updatedAt": "2024-02-13 22:24:23.43",
"deletedAt": "null",
"name": "RANITA",
"email": null,
"phone": null,
"isInternal": false,
"taxId": null
},
{
"uuid": "d80dae3b-18dd-400c-ae12-ebb6580e5983",
"organizationUuid": "be8f0898-6e56-4bcf-8853-bae89c844057",
"createdAt": "2023-12-01 16:05:22.463",
"updatedAt": "2024-02-13 22:24:11.173",
"deletedAt": "null",
"name": "FRUBANA",
"email": null,
"phone": null,
"isInternal": false,
"taxId": null
},
{
"uuid": "4e108977-8a76-4706-a2b5-35cb1e029522",
"organizationUuid": "be8f0898-6e56-4bcf-8853-bae89c844057",
"createdAt": "2023-12-01 16:05:22.468",
"updatedAt": "2024-02-13 22:24:00.838",
"deletedAt": "null",
"name": "CUADRITOS",
"email": null,
"phone": null,
"isInternal": false,
"taxId": null
},
{
"uuid": "b09d6a8b-302e-4c7f-bfb1-54bd21e7b9da",
"organizationUuid": "be8f0898-6e56-4bcf-8853-bae89c844057",
"createdAt": "2023-12-01 16:05:22.486",
"updatedAt": "2024-02-13 22:23:50.099",
"deletedAt": "null",
"name": "ALPURA",
"email": null,
"phone": null,
"isInternal": false,
"taxId": null
},
{
"uuid": "2b92b91c-6863-42aa-b1c3-8e1e4cd6962b",
"organizationUuid": "be8f0898-6e56-4bcf-8853-bae89c844057",
"createdAt": "2023-12-01 16:05:22.491",
"updatedAt": "2024-02-13 22:23:36.687",
"deletedAt": "null",
"name": "MATCHA MEXICO",
"email": null,
"phone": null,
"isInternal": false,
"taxId": null
},
{
"uuid": "6343fb97-e661-4f62-b6e8-95345dae9598",
"organizationUuid": "be8f0898-6e56-4bcf-8853-bae89c844057",
"createdAt": "2023-12-01 16:05:22.505",
"updatedAt": "2023-12-01 16:05:22.505",
"deletedAt": "null",
"name": "2",
"email": null,
"phone": null,
"isInternal": false,
"taxId": null
},
{
"uuid": "4b6c14f3-f2ff-4a12-bb32-e56479c847ef",
"organizationUuid": "be8f0898-6e56-4bcf-8853-bae89c844057",
"createdAt": "2023-12-01 16:05:22.511",
"updatedAt": "2024-02-13 22:23:24.377",
"deletedAt": "null",
"name": "FEMSA",
"email": null,
"phone": null,
"isInternal": false,
"taxId": null
},
{
"uuid": "fa1091f8-da77-4c42-8499-7f27a066d5f5",
"organizationUuid": "be8f0898-6e56-4bcf-8853-bae89c844057",
"createdAt": "2023-12-01 16:05:22.525",
"updatedAt": "2024-02-13 22:23:11.629",
"deletedAt": "null",
"name": "LA MOLINERA",
"email": null,
"phone": null,
"isInternal": false,
"taxId": null
}
],
"datetime": "2024-08-18T13:30:50-06:00"
}
Modified at 2025-03-23 19:10:20