Products

Pet Breeds

GET
/v1/products/pet-insurance/breeds

List available breeds for pet insurance

Authorization

basic auth
AuthorizationBasic <token>

Authorization header with value of Basic <auth string> where the auth string value is a base64 encoded string of <client id>:<client secret>

In: header

Header Parameters

x-api-client-id?

Either x-api-client-id or Authorization header must be provided.

Response Body

application/json

curl -X GET "https://example.com/v1/products/pet-insurance/breeds"
{  "cat": [    {      "id": "string",      "name": "string"    }  ],  "dog": [    {      "id": "string",      "name": "string"    }  ]}
Empty