curl --request GET \
--url https://api.algure.com/v1/countings \
--header 'Authorization: Basic <encoded-value>'{
"items": [
{
"id": "<string>",
"startedAt": "2023-11-07T05:31:56Z",
"endsAt": "2023-11-07T05:31:56Z",
"warehouse": {
"name": "<string>",
"id": 123,
"code": "<string>",
"slug": "<string>"
},
"active": true,
"participants": [
{
"id": 123,
"username": "<string>"
}
],
"totalProducts": 123,
"totalProductsCounted": 123,
"totalProductsLeft": 123,
"totalDiscrepancies": 123,
"totalIncidents": 123
}
],
"meta": {
"links": {
"self": {
"href": "<string>"
},
"first": {
"href": "<string>"
},
"next": {
"href": "<string>"
}
},
"total": 123,
"cursor": "<string>"
}
}Get a list of all countings within an organization.
curl --request GET \
--url https://api.algure.com/v1/countings \
--header 'Authorization: Basic <encoded-value>'{
"items": [
{
"id": "<string>",
"startedAt": "2023-11-07T05:31:56Z",
"endsAt": "2023-11-07T05:31:56Z",
"warehouse": {
"name": "<string>",
"id": 123,
"code": "<string>",
"slug": "<string>"
},
"active": true,
"participants": [
{
"id": 123,
"username": "<string>"
}
],
"totalProducts": 123,
"totalProductsCounted": 123,
"totalProductsLeft": 123,
"totalDiscrepancies": 123,
"totalIncidents": 123
}
],
"meta": {
"links": {
"self": {
"href": "<string>"
},
"first": {
"href": "<string>"
},
"next": {
"href": "<string>"
}
},
"total": 123,
"cursor": "<string>"
}
}Use Integration API credentials as HTTP Basic auth (username: client id, password: client secret).
Maximum number of objects to return. Allowed range: 1–100. Default is 10.
Pagination cursor indicating a position in the list.
List countings of a specific warehouse
List countings started before a specific datetime (ISO 8601)
List countings started after a specific datetime (ISO 8601)
Was this page helpful?