import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const additionalDocument = await client.portingOrders.additionalDocuments.create(
'182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
);
console.log(additionalDocument.data);{
"data": [
{
"id": "2acd1061-33cb-49b8-8014-beb6dc3fedbf",
"document_id": "40bc547a-7f96-4cd5-926a-da4842671e88",
"document_type": "loa",
"porting_order_id": "9d7b3b8e-4e67-4837-9c44-d110cd2c82a1",
"record_type": "porting_additional_document",
"created_at": "2023-06-01T10:00:00.00000Z",
"updated_at": "2023-06-01T10:00:00.00000Z"
}
]
}Creates a list of additional documents for a porting order.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const additionalDocument = await client.portingOrders.additionalDocuments.create(
'182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
);
console.log(additionalDocument.data);{
"data": [
{
"id": "2acd1061-33cb-49b8-8014-beb6dc3fedbf",
"document_id": "40bc547a-7f96-4cd5-926a-da4842671e88",
"document_type": "loa",
"porting_order_id": "9d7b3b8e-4e67-4837-9c44-d110cd2c82a1",
"record_type": "porting_additional_document",
"created_at": "2023-06-01T10:00:00.00000Z",
"updated_at": "2023-06-01T10:00:00.00000Z"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Porting Order id
A list of additional document parameters
Successful response
Show child attributes
Uniquely identifies this additional document
"eef3340b-8903-4466-b445-89b697315a3a"
Identifies the type of additional document
loa, invoice, csr, other "loa"
Identifies the associated document
"f1486bae-f067-460c-ad43-73a92848f902"
The filename of the related document.
"file.txt"
The content type of the related document.
"text/plain"
Identifies the associated porting order
"f1486bae-f067-460c-ad43-73a92848f902"
Identifies the type of the resource.
"porting_additional_document"
ISO 8601 formatted date indicating when the resource was created.
"2021-03-19T10:07:15.527000Z"
ISO 8601 formatted date indicating when the resource was updated.
"2021-03-19T10:07:15.527000Z"
Was this page helpful?