GET api/v1/admin/scim/{id}

Gets that status of SCIM for a given account.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Account ID of the account to be fetched.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

True if enabled/False if not enabled.

TwoSms.CustomerPortalRole.API.Misc.ResponseOfSystem.NullableOfSystem.Boolean
NameDescriptionTypeAdditional information
Error

TwoSms.CustomerPortalRole.API.Misc.Error

None.

ResponseData

TwoSms.CustomerPortalRole.API.Misc.ResponseDataOfSystem.NullableOfSystem.Boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Error": {
    "ErrorCode": "sample string 1",
    "ErrorReason": "sample string 2"
  },
  "ResponseData": {
    "Identification": {
      "UserId": "sample string 1"
    },
    "Result": "sample string 1",
    "Detail": true
  }
}

application/xml, text/xml

Sample:
<ResponseOfNullableOfBoolean xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Error>
    <ErrorCode>sample string 1</ErrorCode>
    <ErrorReason>sample string 2</ErrorReason>
  </Error>
  <ResponseData>
    <Result>sample string 1</Result>
    <Identification>
      <UserId>sample string 1</UserId>
    </Identification>
    <Detail>true</Detail>
  </ResponseData>
</ResponseOfNullableOfBoolean>