Fetch a specific Sync Map Permission

GET /v1/Services/{ServiceSid}/Maps/{MapSid}/Permissions/{Identity}

TODO: Resource-level docs

Fetch a specific Sync Map Permission.

Path parameters

  • ServiceSid string Required

    The SID of the Sync Service with the Sync Map Permission resource to fetch. Can be the Service's sid value or default.

  • MapSid string Required

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

  • Identity string Required

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

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 Document Permission applies

    • manage boolean | null

      Manage access

    • map_sid string | null

      Sync Map SID

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

    • 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 Map Permission resource

    • write boolean | null

      Write access

GET /v1/Services/{ServiceSid}/Maps/{MapSid}/Permissions/{Identity}
curl \
 -X GET https://sync.twilio.com/v1/Services/{ServiceSid}/Maps/{MapSid}/Permissions/{Identity} \
 --user "username:password"
Response examples (200)
{
  "account_sid": "string",
  "identity": "string",
  "manage": true,
  "map_sid": "string",
  "read": true,
  "service_sid": "string",
  "url": "https://example.com",
  "write": true
}