Get a Migration
GET/storage/migrations/:id
Request
Path Parameters
id stringrequired
Unique identifier for the data migration.
Responses
200: Create Migration Response
Response Headers
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/storage/migrations/:id' \
-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"
]
}
}