Create brand registrations
A Messaging Service resource to add and fetch Brand Registrations.
Body
-
A2P Messaging Profile Bundle Sid.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^BU[0-9a-fA-F]{32}$
. -
BrandType string
Type of brand being created. One of: "STANDARD", "STARTER". STARTER is for low volume, starter use cases. STANDARD is for all other use cases.
-
Customer Profile Bundle Sid.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^BU[0-9a-fA-F]{32}$
. -
Mock boolean
A boolean that specifies whether brand should be a mock or not. If true, brand will be registered as a mock brand. Defaults to false if no value is provided.
-
SkipAutomaticSecVet boolean
A flag to disable automatic secondary vetting for brands which it would otherwise be done.
POST /v1/a2p/BrandRegistrations
curl \
-X POST https://messaging.twilio.com/v1/a2p/BrandRegistrations \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'A2PProfileBundleSid=string&BrandType=string&CustomerProfileBundleSid=string&Mock=true&SkipAutomaticSecVet=true'
Request example
{
"A2PProfileBundleSid": "string",
"BrandType": "string",
"CustomerProfileBundleSid": "string",
"Mock": true,
"SkipAutomaticSecVet": true
}
Request examples
{
"A2PProfileBundleSid": "string",
"BrandType": "string",
"CustomerProfileBundleSid": "string",
"Mock": true,
"SkipAutomaticSecVet": true
}
Response examples (201)
{
"a2p_profile_bundle_sid": "string",
"account_sid": "string",
"brand_feedback": [
"TAX_ID"
],
"brand_score": 42,
"brand_type": "string",
"customer_profile_bundle_sid": "string",
"date_created": "2023-05-04T09:42:00+00:00",
"date_updated": "2023-05-04T09:42:00+00:00",
"failure_reason": "string",
"government_entity": true,
"identity_status": "SELF_DECLARED",
"links": {},
"mock": true,
"russell_3000": true,
"sid": "string",
"skip_automatic_sec_vet": true,
"status": "PENDING",
"tax_exempt_status": "string",
"tcr_id": "string",
"url": "https://example.com"
}
Response examples (201)
{
"a2p_profile_bundle_sid": "string",
"account_sid": "string",
"brand_feedback": [
"TAX_ID"
],
"brand_score": 42,
"brand_type": "string",
"customer_profile_bundle_sid": "string",
"date_created": "2024-05-04T09:42:00+00:00",
"date_updated": "2024-05-04T09:42:00+00:00",
"failure_reason": "string",
"government_entity": true,
"identity_status": "SELF_DECLARED",
"links": {},
"mock": true,
"russell_3000": true,
"sid": "string",
"skip_automatic_sec_vet": true,
"status": "PENDING",
"tax_exempt_status": "string",
"tcr_id": "string",
"url": "https://example.com"
}