Skip to main content

List all Migration Sources

GET 
/storage/migration_sources

Request

Responses

200: List Migration Sources Response

Response Headers

    Request samples


    curl -L 'https://api.telnyx.com/v2/storage/migration_sources' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer <TOKEN>'

    Response samples


    {
    "data": [
    {
    "id": "string",
    "provider": "aws",
    "provider_auth": {
    "access_key": "string",
    "secret_access_key": "string"
    },
    "bucket_name": "string"
    }
    ],
    "meta": {
    "page_number": [
    2
    ],
    "page_size": [
    25
    ],
    "total_pages": [
    3
    ],
    "total_results": [
    55
    ]
    }
    }