Create a new Asset resource
A wrapper that represents a static file and groups the different Versions of the static file.
Create a new Asset resource.
Path parameters
-
The SID of the Service to create the Asset resource under.
Body
-
A descriptive string that you create to describe the Asset resource. It can be a maximum of 255 characters.
POST /v1/Services/{ServiceSid}/Assets
curl \
-X POST https://serverless.twilio.com/v1/Services/{ServiceSid}/Assets \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'FriendlyName=string'
Request example
{
"FriendlyName": "string"
}
Request examples
{
"FriendlyName": "string"
}
Response examples (201)
{
"account_sid": "string",
"date_created": "2023-05-04T09:42:00+00:00",
"date_updated": "2023-05-04T09:42:00+00:00",
"friendly_name": "string",
"links": {},
"service_sid": "string",
"sid": "string",
"url": "https://example.com"
}
Response examples (201)
{
"account_sid": "string",
"date_created": "2024-05-04T09:42:00+00:00",
"date_updated": "2024-05-04T09:42:00+00:00",
"friendly_name": "string",
"links": {},
"service_sid": "string",
"sid": "string",
"url": "https://example.com"
}