GET api/customer/user/me/company
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
CustomerModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| CompanyName | string |
None. |
|
| IsDeleted | boolean |
None. |
|
| RTenabled | boolean |
None. |
|
| Lat | decimal number |
None. |
|
| Lon | decimal number |
None. |
|
| UTCoffset | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"CompanyName": "sample string 2",
"IsDeleted": true,
"RTenabled": true,
"Lat": 5.1,
"Lon": 6.1,
"UTCoffset": 7
}
application/xml, text/xml
Sample:
<CustomerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Saga.Kjorebok.Backend.Models"> <CompanyName>sample string 2</CompanyName> <ID>1</ID> <IsDeleted>true</IsDeleted> <Lat>5.1</Lat> <Lon>6.1</Lon> <RTenabled>true</RTenabled> <UTCoffset>7</UTCoffset> </CustomerModel>