SuppliersList Suppliers

List Suppliers

List all suppliers for your company. Use the returned IDs to classify expenses when creating or editing transactions. Returns all registered suppliers. No pagination.

curl -X GET "https://api-sandbox.contasimples.com/suppliers/v1/suppliers" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "items": [
    {
      "id": 16,
      "name": "Example Supplier LLC",
      "type": {
        "id": 1,
        "type": "CUSTOM"
      }
    }
  ]
}
GET
/suppliers/v1/suppliers
GET
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token
Bearer Tokenstring
Required

Bearer token from OAuth 2.0 client credentials. Format: Bearer {token}

Bearer token from OAuth 2.0 client credentials. Format: Bearer {token}
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token. Bearer token from OAuth 2.0 client credentials. Format: Bearer {token}

Responses

itemsarray
Required

List of company suppliers.