Create channel

POST /v2/Services/{ServiceSid}/Channels

TODO: Resource-level docs

Headers

application/x-www-form-urlencoded

Body

Responses

POST /v2/Services/{ServiceSid}/Channels
curl \
 -X POST https://ip-messaging.twilio.com/v2/Services/{ServiceSid}/Channels \
 --user "username:password" \
 -H "Content-Type: application/x-www-form-urlencoded" \
 -H "X-Twilio-Webhook-Enabled: true" \
 -d 'Attributes=string&CreatedBy=string&DateCreated=2023-05-04T09%3A42%3A00%2B00%3A00&DateUpdated=2023-05-04T09%3A42%3A00%2B00%3A00&FriendlyName=string&Type=public&UniqueName=string'
Request example
# Headers
X-Twilio-Webhook-Enabled: true

# Payload
{
  "Attributes": "string",
  "CreatedBy": "string",
  "DateCreated": "2023-05-04T09:42:00+00:00",
  "DateUpdated": "2023-05-04T09:42:00+00:00",
  "FriendlyName": "string",
  "Type": "public",
  "UniqueName": "string"
}
Response examples (201)
{
  "account_sid": "string",
  "attributes": "string",
  "created_by": "string",
  "date_created": "2023-05-04T09:42:00+00:00",
  "date_updated": "2023-05-04T09:42:00+00:00",
  "friendly_name": "string",
  "links": {},
  "members_count": 42,
  "messages_count": 42,
  "service_sid": "string",
  "sid": "string",
  "type": "public",
  "unique_name": "string",
  "url": "https://example.com"
}