Skip to main content
POST
/
storage
/
migrations
/
{id}
/
actions
/
stop
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.migrations.actions.stop('');

console.log(response.data);
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Unique identifier for the data migration.

Response

Create Migration Response

data
object