This API endpoint will allow you to get a list of freight forwarders. You can filter by using different query parameters such as name or general_ledger_id.
Code | Description |
---|---|
400 | Bad Request. |
404 | Not Found. |
500 | Internal Server Error. |
curl "https://app.octopi.co/api/v1/freight_forwarders.json?name=Octopi" -H "Accept: application/json" -H "Content-Type: application/json" -H "Authorization: Token token=YOUR TOKEN HERE"
{ "freight_forwarders" : [ { "phone" : null, "name" : "FC OCTOPI", "general_ledger_id" : null, "vat_number" : "222", "email" : null, "id" : 337395, "address" : null, "contact_person" : null }, { "address" : null, "contact_person" : null, "id" : 337386, "email" : null, "general_ledger_id" : null, "vat_number" : "2232", "phone" : null, "name" : "INTER OCTOPI" }, { "email" : null, "general_ledger_id" : null, "vat_number" : "2212", "phone" : null, "name" : "OCTOPI UNITED FC", "address" : null, "contact_person" : null, "id" : 337385 } ] }
Param name | Description |
---|---|
name optional |
Allows you to filter/search freight forwarders by name Validations:
|
general_ledger_id optional |
Allows you to filter/search freight forwarders by general ledger ID Validations:
|
missing_general_ledger_id optional |
Set to true to return all freight forwarders that do not have a general ledger ID Validations:
|
active optional |
Filter for active freight forwarders by setting to true. Or set to false to get all inactive freight forwarders. If absent, Octopi will return both active and inactive freight forwarders. Validations:
|
page optional |
Specify which page of results to fetch. This value defaults to 1. Validations:
|
per optional |
The number of items to be displayed. This value defaults to 10 and accepts a maximum of 100. Validations:
|