Update an identity's access to a specific Sync List

POST /v1/Services/{ServiceSid}/Lists/{ListSid}/Permissions/{Identity}

Permissions for Sync list items

Update an identity's access to a specific Sync List.

Path parameters

  • ServiceSid string Required

    The SID of the Sync Service with the Sync List Permission resource to update.

  • ListSid string Required

    The SID of the Sync List with the Sync List Permission resource to update. Can be the Sync List resource's sid or its unique_name.

  • Identity string Required

    The application-defined string that uniquely identifies the User's Sync List Permission resource to update.

application/x-www-form-urlencoded

Body

  • Manage boolean Required

    Whether the identity can delete the Sync List. Default value is false.

  • Read boolean Required

    Whether the identity can read the Sync List and its Items. Default value is false.

  • Write boolean Required

    Whether the identity can create, update, and delete Items in the Sync List. Default value is false.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • account_sid string | null

      The SID of the Account that created the resource

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

    • identity string | null

      The identity of the user to whom the Sync List Permission applies

    • list_sid string | null

      The SID of the Sync List to which the Permission applies

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^ES[0-9a-fA-F]{32}$.

    • manage boolean | null

      Manage access

    • read boolean | null

      Read access

    • service_sid string | null

      The SID of the Sync Service that the resource is associated with

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^IS[0-9a-fA-F]{32}$.

    • url string(uri) | null

      The absolute URL of the Sync List Permission resource

    • write boolean | null

      Write access

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
}
Response examples (200)
{
  "account_sid": "string",
  "identity": "string",
  "list_sid": "string",
  "manage": true,
  "read": true,
  "service_sid": "string",
  "url": "https://example.com",
  "write": true
}