Retrieve a collection of contacts information
GET/api/contacts
This API endpoint is crafted to offer you an extensive list of user contacts, empowering you with the ability to filter, paginate, and access in-depth contact information seamlessly within your system.
Request
Query Parameters
Default value: 1
The collection page number
Possible values: <= 50
Default value: 30
The number of items per page
Enable or disable pagination
Possible values: [ASC, DESC]
Sort the results by the specified field
Responses
- 200
- 401
- 403
OK - The request was processed successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
Possible values: [legal_entity, person]
Possible values: [en, de, fr, it, cs, pl]
expenseCategory objectnullable
expenseCostCenter objectnullable
expenseVat objectnullable
Whether accounting details from the contact should automatically mark related expense management as completed.
[
{
"id": 1,
"name": "AMNIS Treasury Services AG",
"type": "legal_entity",
"country": "CH",
"address": "Baslerstrasse 60",
"city": "Zürich",
"zip": "8048",
"state": "Canton of Zürich",
"language": "en",
"selfContact": true,
"expenseCategory": {
"id": 1,
"name": "Travels"
},
"expenseCostCenter": {
"id": 1,
"name": "Finance"
},
"expenseVat": {
"id": 1,
"name": "Standard VAT",
"value": "8.1"
},
"autoCompleteExpenseManagement": false
}
]
Unauthorised -- Your access token is wrong.
- application/json
- Schema
- Example (from schema)
Schema
{
"type": "string",
"title": "string",
"detail": "string"
}
Forbidden -- Access to the requested resource or action is forbidden.
- application/json
- Schema
- Example (from schema)
Schema
{
"type": "string",
"title": "string",
"detail": "string"
}