POST api/loadUserType

Request Information

URI Parameters

None.

Body Parameters

loadUserTypeInput
NameDescriptionTypeAdditional information
OUserId

string

None.

Token

string

None.

SchoolId

string

None.

OrgId

string

None.

EmpId

string

None.

UserType

string

None.

Request Formats

application/json, text/json

Sample:
{
  "OUserId": "sample string 1",
  "Token": "sample string 2",
  "SchoolId": "sample string 3",
  "OrgId": "sample string 4",
  "EmpId": "sample string 5",
  "UserType": "sample string 6"
}

application/xml, text/xml

Sample:
<loadUserTypeInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/wsCampusColors.Model">
  <EmpId>sample string 5</EmpId>
  <OUserId>sample string 1</OUserId>
  <OrgId>sample string 4</OrgId>
  <SchoolId>sample string 3</SchoolId>
  <Token>sample string 2</Token>
  <UserType>sample string 6</UserType>
</loadUserTypeInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of loadUserType
NameDescriptionTypeAdditional information
id

string

None.

usertype

string

None.

shortname

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "sample string 1",
    "usertype": "sample string 2",
    "shortname": "sample string 3"
  },
  {
    "id": "sample string 1",
    "usertype": "sample string 2",
    "shortname": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfloadUserType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/wsCampusColors.Model">
  <loadUserType>
    <id>sample string 1</id>
    <shortname>sample string 3</shortname>
    <usertype>sample string 2</usertype>
  </loadUserType>
  <loadUserType>
    <id>sample string 1</id>
    <shortname>sample string 3</shortname>
    <usertype>sample string 2</usertype>
  </loadUserType>
</ArrayOfloadUserType>