POST api/ExamFieldMappingDetails
Creates a new exam field mapping detail or updates an existent exam field mapping detail's information.
Request Information
URI Parameters
None.
Body Parameters
ExamFieldMappingDetailModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ColumnName |
Column Name of the exam field mapping detail (Required). |
string |
None. |
| ListValue |
List values of the exam field mapping detail (Required). |
string |
None. |
| SortOrder |
Sort order of the exam field mapping detail (Required). |
integer |
None. |
| Id |
Unique ID of the model in the portal (Read only). |
globally unique identifier |
None. |
| ExternalId |
Unique ID of the model on integrating system (Required). |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"columnName": "sample string 1",
"listValue": "sample string 2",
"sortOrder": 3,
"id": "51c759cc-b240-42a6-820c-2eea9554f06f",
"externalId": "sample string 5"
}
application/xml, text/xml
Sample:
<ExamFieldMappingDetailModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models.ExamFieldMappingDetails"> <ExternalId xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models">sample string 5</ExternalId> <Id xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models">51c759cc-b240-42a6-820c-2eea9554f06f</Id> <ColumnName>sample string 1</ColumnName> <ListValue>sample string 2</ListValue> <SortOrder>3</SortOrder> </ExamFieldMappingDetailModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ExamFieldMappingDetailModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ColumnName |
Column Name of the exam field mapping detail (Required). |
string |
None. |
| ListValue |
List values of the exam field mapping detail (Required). |
string |
None. |
| SortOrder |
Sort order of the exam field mapping detail (Required). |
integer |
None. |
| Id |
Unique ID of the model in the portal (Read only). |
globally unique identifier |
None. |
| ExternalId |
Unique ID of the model on integrating system (Required). |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"columnName": "sample string 1",
"listValue": "sample string 2",
"sortOrder": 3,
"id": "98092d20-b529-4c99-9299-6a9d85176b18",
"externalId": "sample string 5"
}
application/xml, text/xml
Sample:
<ExamFieldMappingDetailModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models.ExamFieldMappingDetails"> <ExternalId xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models">sample string 5</ExternalId> <Id xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Api.Models">98092d20-b529-4c99-9299-6a9d85176b18</Id> <ColumnName>sample string 1</ColumnName> <ListValue>sample string 2</ListValue> <SortOrder>3</SortOrder> </ExamFieldMappingDetailModel>