Modify the properties of a given Account
User provided AWS keys
Modify the properties of a given Account
Path parameters
-
The Twilio-provided string that uniquely identifies the AWS resource to update.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^CR[0-9a-fA-F]{32}$
.
POST
/v1/Credentials/AWS/{Sid}
curl \
--request POST 'https://accounts.twilio.com/v1/Credentials/AWS/{Sid}' \
--user "username:password" \
--header "Content-Type: application/x-www-form-urlencoded" \
--data 'Credentials=aws_credentials&FriendlyName=friendly_name'
Request example
{"Credentials"=>"aws_credentials", "FriendlyName"=>"friendly_name"}
Response examples (200)
{
"sid": "CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://accounts.twilio.com/v1/Credentials/AWS/CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"date_created": "2015-07-31T04:00:00Z",
"date_updated": "2015-07-31T04:00:00Z",
"friendly_name": "friendly_name"
}