POST api/Vet/GetVetsInPetHistory?petId={petId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
petId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PetVetHistoryResponseName | Description | Type | Additional information |
---|---|---|---|
VetName | string |
None. |
|
Postcode | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "VetName": "sample string 1", "Postcode": "sample string 2" }, { "VetName": "sample string 1", "Postcode": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfPetVetHistoryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tss.Eitr.Customer.Agria.WebApi.Models"> <PetVetHistoryResponse> <Postcode>sample string 2</Postcode> <VetName>sample string 1</VetName> </PetVetHistoryResponse> <PetVetHistoryResponse> <Postcode>sample string 2</Postcode> <VetName>sample string 1</VetName> </PetVetHistoryResponse> </ArrayOfPetVetHistoryResponse>