Updates a Bundle in an account
TODO: Resource-level docs
Updates a Bundle in an account.
Path parameters
-
The unique string that we created to identify the Bundle resource.
Body
-
Email string
The email address that will receive updates when the Bundle resource changes status.
-
FriendlyName string
The string that you assigned to describe the resource.
-
Status string
The verification status of the Bundle resource.
Values are
draft
,pending-review
,in-review
,twilio-rejected
,twilio-approved
, orprovisionally-approved
. -
StatusCallback string(uri)
The URL we call to inform your application of status changes.
POST /v2/RegulatoryCompliance/Bundles/{Sid}
curl \
-X POST https://numbers.twilio.com/v2/RegulatoryCompliance/Bundles/{Sid} \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'Email=string&FriendlyName=string&Status=draft&StatusCallback=https%3A%2F%2Fexample.com'
Request example
{
"Email": "string",
"FriendlyName": "string",
"Status": "draft",
"StatusCallback": "https://example.com"
}
Request examples
{
"Email": "string",
"FriendlyName": "string",
"Status": "draft",
"StatusCallback": "https://example.com"
}
Response examples (200)
{
"account_sid": "string",
"date_created": "2023-05-04T09:42:00+00:00",
"date_updated": "2023-05-04T09:42:00+00:00",
"email": "string",
"friendly_name": "string",
"links": {},
"regulation_sid": "string",
"sid": "string",
"status": "draft",
"status_callback": "https://example.com",
"url": "https://example.com",
"valid_until": "2023-05-04T09:42:00+00:00"
}
Response examples (200)
{
"account_sid": "string",
"date_created": "2024-05-04T09:42:00+00:00",
"date_updated": "2024-05-04T09:42:00+00:00",
"email": "string",
"friendly_name": "string",
"links": {},
"regulation_sid": "string",
"sid": "string",
"status": "draft",
"status_callback": "https://example.com",
"url": "https://example.com",
"valid_until": "2024-05-04T09:42:00+00:00"
}