Order Brand External Vetting
POST/brand/:brandId/externalVetting
Order new external vetting for a brand
Request
Path Parameters
brandId Brandidrequired
- application/json
Body
required
evpId Evpid (string)required
Possible values: <= 10 characters
External vetting provider ID for the brand.
vettingClass Vettingclass (string)required
Identifies the vetting classification.
Responses
200: Successful Response
- application/json
422: Validation Error
- application/json
Request samples
curl -L 'https://api.telnyx.com/10dlc/brand/:brandId/externalVetting' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"evpId": "string",
"vettingClass": "string"
}'
Response samples
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}