PUT api/authorizations/{authId}/supervision?userLogin={userLogin}&RqUID={RqUID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
authId

integer

Required

userLogin

string

Required

RqUID

string

None.

Body Parameters

RestSupervisionDTO
NameDescriptionTypeAdditional information
SupervisorBOEntity

string

Required

String length: inclusive between 0 and 255

SupervisionDateTime

date

None.

SupervisionReasonCode

string

String length: inclusive between 0 and 50

Request Formats

application/json, text/json

Sample:
{
  "SupervisorBOEntity": "sample string 1",
  "SupervisionDateTime": "2026-02-04 04:19:53",
  "SupervisionReasonCode": "sample string 2"
}

application/xml, text/xml

Sample:
<RestSupervisionDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GtMotive.GtGlobal.Common.DTO.Rest.Authorization">
  <SupervisionDateTime>2026-02-04T04:19:53.1867265+01:00</SupervisionDateTime>
  <SupervisionReasonCode>sample string 2</SupervisionReasonCode>
  <SupervisorBOEntity>sample string 1</SupervisorBOEntity>
</RestSupervisionDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RestBasicResponseDTO
NameDescriptionTypeAdditional information
Code

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": "sample string 1",
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<RestBasicResponseDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GtMotive.GtGlobal.Common.DTO.Rest.Shared">
  <Code>sample string 1</Code>
  <Message>sample string 2</Message>
</RestBasicResponseDTO>