POST api/Roster?APIKey={APIKey}&ClientId={ClientId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
APIKey

string

Required

ClientId

string

Required

Body Parameters

RosterRequest
NameDescriptionTypeAdditional information
Roster

Roster

None.

Request Formats

application/json, text/json

Sample:
{
  "Roster": {
    "Id": "4acd7cb0-08f5-4d9f-bc71-9e2e2c59a132",
    "Code": "sample string 2",
    "GroupCode": "sample string 3",
    "GroupId": "2b8f3fb9-8ea8-49cd-bcff-dbc9e4411888",
    "Name": "sample string 5",
    "Description": "sample string 6",
    "Sequence": 7,
    "Custom": {
      "Attribute": [
        {
          "Type": 0,
          "Key": "sample string 1",
          "Value": "sample string 2",
          "FormattedValue": "sample string 3"
        },
        {
          "Type": 0,
          "Key": "sample string 1",
          "Value": "sample string 2",
          "FormattedValue": "sample string 3"
        }
      ]
    }
  }
}

application/xml, text/xml

Sample:
<RosterRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Protech.UX.API.Roster">
  <Roster>
    <Code>sample string 2</Code>
    <Custom>
      <Attribute xmlns:d4p1="http://schemas.datacontract.org/2004/07/Protech.UX.API.CRMEntity">
        <d4p1:Attribute>
          <d4p1:FormattedValue>sample string 3</d4p1:FormattedValue>
          <d4p1:Key>sample string 1</d4p1:Key>
          <d4p1:Type>text</d4p1:Type>
          <d4p1:Value>sample string 2</d4p1:Value>
        </d4p1:Attribute>
        <d4p1:Attribute>
          <d4p1:FormattedValue>sample string 3</d4p1:FormattedValue>
          <d4p1:Key>sample string 1</d4p1:Key>
          <d4p1:Type>text</d4p1:Type>
          <d4p1:Value>sample string 2</d4p1:Value>
        </d4p1:Attribute>
      </Attribute>
    </Custom>
    <Description>sample string 6</Description>
    <GroupCode>sample string 3</GroupCode>
    <GroupId>2b8f3fb9-8ea8-49cd-bcff-dbc9e4411888</GroupId>
    <Id>4acd7cb0-08f5-4d9f-bc71-9e2e2c59a132</Id>
    <Name>sample string 5</Name>
    <Sequence>7</Sequence>
  </Roster>
</RosterRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResponse
NameDescriptionTypeAdditional information
Status

Status

None.

Id

globally unique identifier

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 0,
  "Id": "e9af6db4-9485-4a90-9985-282bdaa17850",
  "Description": "sample string 2"
}

application/xml, text/xml

Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Protech.UX.API.Response">
  <Description>sample string 2</Description>
  <Id>e9af6db4-9485-4a90-9985-282bdaa17850</Id>
  <Status>Success</Status>
</APIResponse>