Skip to main content
GET
/
products
/
{product_id}
/
client_types
List all client types for this API Product
curl --request GET \
  --url http://localhost:3001/portal-api/products/{product_id}/client_types \
  --header 'Authorization: <api-key>'
[
  {
    "ID": 1,
    "Name": "foo"
  }
]

Authorizations

Authorization
string
header
required

Path Parameters

product_id
integer
required

UID of a Client Type

Example:

1

Response

200 - application/json

List of client types successfully retrieved

ID
integer

UID of this client type

Example:

1

Name
string

Name of this client type

Example:

"foo"