curl --request POST \
--url https://api.bland.ai/v1/sip/port/document \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{}'{
"data": {
"document_sid": "doc_abc123"
},
"errors": null
}
Upload a Letter of Authorization (LOA) or proof of ownership document for number porting.
curl --request POST \
--url https://api.bland.ai/v1/sip/port/document \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{}'{
"data": {
"document_sid": "doc_abc123"
},
"errors": null
}
curl -X POST https://api.bland.ai/v1/sip/port/document \
-H "Authorization: Bearer <token>" \
-F "file=@/path/to/utility-bill.pdf"
{
"data": {
"document_sid": "doc_abc123"
},
"errors": null
}
Was this page helpful?