Retrieves a paginated list of API keys for the authenticated practice group.
curl -i -X GET \
'https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/api_keys?order_by=createdAt&order_descending=true&page_index=1&page_size=20' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE'
curl -i -X POST \
https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/api_keys \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE' \
-d '{
"partner_id": "string"
}'
{ "id": "string", "key": "string", "partner": { "id": "string", "name": "string" }, "expire_at": "string", "created_at": "string" }
curl -i -X GET \
'https://developer.herohealth.net/_mock/apis/public-api/openapi/v1/api_keys/{id}' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-practice-group-id: YOUR_API_KEY_HERE'
{ "id": "string", "key": "string", "expire_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z", "partner": { "id": "string", "name": "string" } }