v1
latestOpenAPI 3.0.02026-07-2455104.8 MB๐ List supplier delivery addresses V3
This endpoint is currently in Beta and available for testing. It may contain bugs, and breaking changes can occur at any time without prior notice. We do not recommend using Beta endpoints in production environments. Should you choose to use it in production, you assume full responsibility for any resulting issues.
This endpoint requires the following scopes: supplier:read.
Paginated list of delivery addresses for a supplier.
Path parameters
Query parameters
The filter parameter is used to filter the results of the given endpoint.
Supported filter operators by key:
deliveryAddress.name: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.title: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.contactPerson: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.department: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.subDepartment: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.addressSupplement: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.street: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.zipCode: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.city: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.state: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.country: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.gln: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.email: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.phone: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
deliveryAddress.fax: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
taxType: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
defaultDeliveryAddress: equals, notEquals
termsOfDelivery: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
vatId: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
remark: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
note: equals, notEquals, in, notIn, contains, notContains, startsWith, endsWith
id: equals, notEquals, in, notIn
Sort via id, -id, name, -name, city, -city, country, -country, zipCode and -zipCode. Default sort is -created_at
Number of items per page. Default: 15, Max: 100
Page number.
Response
Paginated list of delivery addresses for a supplier.
Example response
{
"data": [
{
"id": "1",
"type": "company",
"name": "Acme Logistics Hub Berlin",
"title": "Dr.",
"contactPerson": "Marco Schmidt",
"salutation": "Hallo Logistics Team",
"department": "Logistics",
"subDepartment": "Distribution Center",
"addressSupplement": "Hall B",
"street": "Lagerweg 22",
"zipCode": "10437",
"city": "Berlin",
"state": "BE",
"country": "DE",
"gln": "4012345000300",
"phone": "+491231234567",
"mobile": "+49170123456",
"fax": "+491231234567-1",
"email": "name@provider.com",
"deliveryDetails": {
"taxType": "domestic",
"defaultDeliveryAddress": true,
"termsOfDelivery": "EXW",
"vatId": "DE123456789",
"remark": "Main Berlin hub open 06:00 to 22:00",
"note": "Deliveries after 10am only"
}
}
],
"meta": {
"currentPage": 1,
"from": 1,
"path": "https://api.example.com/items",
"perPage": 15,
"to": 15
},
"links": {
"first": "https://api.example.com/items?page=1",
"next": "https://api.example.com/items?page=17"
}
}