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
]
}
}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
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List Migrations Source Coverage Response
Was this page helpful?