GET api/v1/{tokenClient}/agency
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tokenClient | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AgencyViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ZOIId |
Identifiant |
globally unique identifier |
None. |
| ZOIName |
Agence Name |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ZOIId": "48fa71af-bfb6-46c0-9386-46f0554f7abd",
"ZOIName": "sample string 2"
},
{
"ZOIId": "48fa71af-bfb6-46c0-9386-46f0554f7abd",
"ZOIName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfAgencyViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Vehizen.Domain.Dto">
<AgencyViewModel>
<ZOIId>48fa71af-bfb6-46c0-9386-46f0554f7abd</ZOIId>
<ZOIName>sample string 2</ZOIName>
</AgencyViewModel>
<AgencyViewModel>
<ZOIId>48fa71af-bfb6-46c0-9386-46f0554f7abd</ZOIId>
<ZOIName>sample string 2</ZOIName>
</AgencyViewModel>
</ArrayOfAgencyViewModel>