POST Offsite/CreateCaseManager
Create new Case Manager
Request Information
URI Parameters
None.
Body Parameters
CaseManagerModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FirstName |
Manager First Name |
string |
None. |
| LastName |
Manager Last Name |
string |
None. |
| MobilePhone |
Mobile Phone |
string |
None. |
|
|
string |
None. |
|
| ProgramId |
Program Id |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"FirstName": "sample string 1",
"LastName": "sample string 2",
"MobilePhone": "sample string 3",
"Email": "sample string 4",
"ProgramId": 5
}
application/xml, text/xml
Sample:
<CaseManagerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Avertest.Aversys.DataLayer.Offsite"> <Email>sample string 4</Email> <FirstName>sample string 1</FirstName> <LastName>sample string 2</LastName> <MobilePhone>sample string 3</MobilePhone> <ProgramId>5</ProgramId> </CaseManagerModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
new Manager Id
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<long xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</long>
