List all Migrations
GET/storage/migrations
Request
Responses
200: List Migrations Response
Response Headers
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/storage/migrations' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": [
{
"id": "string",
"source_id": "string",
"target_bucket_name": "string",
"target_region": "string",
"refresh": true,
"last_copy": [
"2020-01-01T00:00:00Z"
],
"status": "pending",
"bytes_to_migrate": 0,
"bytes_migrated": 0,
"speed": 0,
"eta": [
"2020-01-01T00:00:00Z"
],
"created_at": [
"2020-01-01T00:00:00Z"
]
}
],
"meta": {
"page_number": [
2
],
"page_size": [
25
],
"total_pages": [
3
],
"total_results": [
55
]
}
}