Update an identity's access to a specific Sync List
Permissions for Sync list items
Update an identity's access to a specific Sync List.
Path parameters
-
The SID of the Sync Service with the Sync List Permission resource to update.
-
The SID of the Sync List with the Sync List Permission resource to update. Can be the Sync List resource's
sid
or itsunique_name
. -
The application-defined string that uniquely identifies the User's Sync List Permission resource to update.
Body
-
Whether the identity can delete the Sync List. Default value is
false
. -
Whether the identity can read the Sync List and its Items. Default value is
false
. -
Whether the identity can create, update, and delete Items in the Sync List. Default value is
false
.
POST /v1/Services/{ServiceSid}/Lists/{ListSid}/Permissions/{Identity}
curl \
-X POST https://sync.twilio.com/v1/Services/{ServiceSid}/Lists/{ListSid}/Permissions/{Identity} \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'Manage=true&Read=true&Write=true'
Request example
{
"Manage": true,
"Read": true,
"Write": true
}
Request examples
{
"Manage": true,
"Read": true,
"Write": true
}
Response examples (200)
{
"account_sid": "string",
"identity": "string",
"list_sid": "string",
"manage": true,
"read": true,
"service_sid": "string",
"url": "https://example.com",
"write": true
}
Response examples (200)
{
"account_sid": "string",
"identity": "string",
"list_sid": "string",
"manage": true,
"read": true,
"service_sid": "string",
"url": "https://example.com",
"write": true
}