Import External Vetting Record
PUT/brand/:brandId/externalVetting
This operation can be used to import an external vetting record from a TCR-approved vetting provider. If the vetting provider confirms validity of the record, it will be saved with the brand and will be considered for future campaign qualification.
Request
Path Parameters
brandId Brandidrequired
- application/json
Body
required
evpId Evpid (string)required
Possible values: <= 10 characters
External vetting provider ID for the brand.
vettingId Vettingid (string)required
Unique ID that identifies a vetting transaction performed by a vetting provider. This ID is provided by the vetting provider at time of vetting.
vettingToken Vettingtoken (string)
Required by some providers for vetting record confirmation.
Responses
200: Successful Response
- application/json
422: Validation Error
- application/json
Request samples
curl -L -X PUT 'https://api.telnyx.com/10dlc/brand/:brandId/externalVetting' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"evpId": "string",
"vettingId": "string",
"vettingToken": "string"
}'
Response samples
{
"evpId": "string",
"vettingId": "string",
"vettingToken": "string",
"vettingScore": 0,
"vettingClass": "string",
"vettedDate": "string",
"createDate": "string"
}
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}