GET api/SalesCalls/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
SalesCallData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| TypeCode | string |
None. |
|
| TerritoryId | globally unique identifier |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| Identifier | string |
None. |
|
| Updated | date |
None. |
|
| IsDeleted | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "414b9731-eaec-4a77-a201-ca8d73469841",
"TypeCode": "sample string 1",
"TerritoryId": "6ae95b44-d495-4c04-91f6-4d329f68d301",
"CustomerId": "9d4ada59-3734-4588-9fa5-112c9e53d4b2",
"Identifier": "sample string 2",
"Updated": "2025-12-15T23:43:25.5629322-05:00",
"IsDeleted": 1
}
application/xml, text/xml
Sample:
<SalesCallData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <CustomerId>9d4ada59-3734-4588-9fa5-112c9e53d4b2</CustomerId> <Id>414b9731-eaec-4a77-a201-ca8d73469841</Id> <Identifier>sample string 2</Identifier> <IsDeleted>1</IsDeleted> <TerritoryId>6ae95b44-d495-4c04-91f6-4d329f68d301</TerritoryId> <TypeCode>sample string 1</TypeCode> <Updated>2025-12-15T23:43:25.5629322-05:00</Updated> </SalesCallData>