enterprise_license_forecast_retrieve
GET/api/v3//enterprise/license/forecast/
Forecast how many users will be required in a year
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
internal_users integerrequired
external_users integerrequired
forecasted_internal_users integerrequired
forecasted_external_users integerrequired
{
"internal_users": 0,
"external_users": 0,
"forecasted_internal_users": 0,
"forecasted_external_users": 0
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET '/api/v3/enterprise/license/forecast/' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'