List all batch operations
GET/v1/batches/operations
Retrieve all batch operations. Beta
Responses
- 200
- 404
- 500
- application/json
- Schema
- Example (from schema)
Schema
count integernullable
next urinullable
previous urinullable
results
object[]
required
{
"count": 0,
"next": "string",
"previous": "string",
"results": [
{
"id": "string",
"status": "queued",
"resource_type": "orders",
"resources": [
{
"id": "string",
"status": "queued",
"errors": {}
}
],
"created_at": "2024-07-29T15:51:28.071Z",
"updated_at": "2024-07-29T15:51:28.071Z",
"test_mode": true
}
]
}
- application/json
- Schema
- Example (from schema)
Schema
errors
object[]
{
"errors": [
{
"message": "string",
"code": "string",
"details": {}
}
]
}
- application/json
- Schema
- Example (from schema)
Schema
errors
object[]
{
"errors": [
{
"message": "string",
"code": "string",
"details": {}
}
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://docs.karrio.io/v1/batches/operations' \
-H 'Accept: application/json'