Skip to main content
GET
/
storage
/
migration_source_coverage
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const response = await client.storage.listMigrationSourceCoverage();

console.log(response.data);
{
  "data": [
    {
      "provider": "aws",
      "source_region": "<string>"
    }
  ],
  "meta": {
    "page_number": [
      2
    ],
    "page_size": [
      25
    ],
    "total_pages": [
      3
    ],
    "total_results": [
      55
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

List Migrations Source Coverage Response

data
object[]
meta
object