curl --request POST \
--url https://api.withorb.com/v1/license_types \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"grouping_key": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"grouping_key": "<string>"
}This endpoint is used to create a new license type.
License types are used to group licenses and define billing behavior. Each license type has a name and a grouping key that determines how metrics are aggregated for billing purposes.
curl --request POST \
--url https://api.withorb.com/v1/license_types \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"grouping_key": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"grouping_key": "<string>"
}API Keys can be issued in the Orb's web application.
Created
The LicenseType resource represents a type of license that can be assigned to users. License types are used during billing by grouping metrics on the configured grouping key.
Was this page helpful?