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

const client = new Telnyx({
  apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});

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

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

Authorizations

Authorization
string
header
required

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

Response

List Migrations Source Coverage Response

data
object[]
meta
object