GET api/v1/Customer/Customer?customerid={customerid}
Query customer information for a specific Neutral Fuels customer.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerid | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
api_getcustomer_Result| Name | Description | Type | Additional information |
|---|---|---|---|
| customerid | globally unique identifier |
None. |
|
| customername | string |
None. |
|
| emailaddress | string |
None. |
|
| CountryISO | string |
None. |
|
| CountryId | integer |
None. |
|
| siteid | globally unique identifier |
None. |
|
| isrocsystemuser | boolean |
None. |
|
| iscollector | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"customerid": "eeb07a35-23b2-4c40-9aed-6bc063ace27c",
"customername": "sample string 2",
"emailaddress": "sample string 3",
"CountryISO": "sample string 4",
"CountryId": 1,
"siteid": "365eac62-223e-45b3-a193-a8104cc1a23d",
"isrocsystemuser": true,
"iscollector": true
}
application/xml, text/xml
Sample:
<api_getcustomer_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NFuels_Database.database.portal"> <CountryISO>sample string 4</CountryISO> <CountryId>1</CountryId> <customerid>eeb07a35-23b2-4c40-9aed-6bc063ace27c</customerid> <customername>sample string 2</customername> <emailaddress>sample string 3</emailaddress> <iscollector>true</iscollector> <isrocsystemuser>true</isrocsystemuser> <siteid>365eac62-223e-45b3-a193-a8104cc1a23d</siteid> </api_getcustomer_Result>