Fetch a specific Sync Map Permission.

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

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 application/json

    OK

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string

      Specify the origin(s) allowed to access the resource

    • Access-Control-Allow-Methods string

      Specify the HTTP methods allowed when accessing the resource

    • Access-Control-Allow-Headers string

      Specify the headers allowed when accessing the resource

    • Access-Control-Allow-Credentials boolean

      Indicates whether the browser should include credentials

    • Access-Control-Expose-Headers string

      Headers exposed to the client

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

      The SID of the Account that created the Sync Map Permission resource.

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

    • service_sid string | null

      The SID of the Sync Service 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}$.

    • map_sid string | null

      The SID of the Sync Map to which the Permission applies.

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

    • identity string | null

      The application-defined string that uniquely identifies the resource's User within the Service to an FPA token.

    • read boolean | null

      Whether the identity can read the Sync Map and its Items.

    • write boolean | null

      Whether the identity can create, update, and delete Items in the Sync Map.

    • manage boolean | null

      Whether the identity can delete the Sync Map.

    • url string(uri) | null

      The absolute URL of the Sync Map Permission resource.

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