ibl-data-manager (3.59.0-ai-plus)
API for iblai
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/catalog/licenses/user/assignment/group/
https://base.manager.iblai.app/api/catalog/licenses/user/assignment/group/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.ibl.ai/_mock/apis/ibl/api/catalog/licenses/user/assignment/group/?license_id=0&page=0&page_size=0&platform_key=string&platform_org=string&sort=id' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"license_id": 0,
"group_id": 0,
"platform_key": "string",
"platform_org": "string",
"active": true,
"fulfilled": false,
"metadata": {
"property1": null,
"property2": null
}
}'
Response
application/json
{ "id": 0, "group_id": 0, "group_name": "string", "active": true, "fulfilled": true, "redirect_to": "http://example.com", "metadata": { "property1": null, "property2": null }, "license_id": 0, "license_name": "string", "platform_key": "string" }
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/catalog/licenses/user/assignment/group/
https://base.manager.iblai.app/api/catalog/licenses/user/assignment/group/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.ibl.ai/_mock/apis/ibl/api/catalog/licenses/user/assignment/group/?assignment_id=0&license_id=0&page=0&page_size=0&platform_key=string&platform_org=string&sort=id' \
-H 'Authorization: YOUR_API_KEY_HERE'
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/catalog/licenses/user/create/
https://base.manager.iblai.app/api/catalog/licenses/user/create/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.ibl.ai/_mock/apis/ibl/api/catalog/licenses/user/create/ \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"platform_key": "string",
"platform_org": "string",
"name": "string",
"count": 0,
"started": "2019-08-24T14:15:22Z",
"expired": "2019-08-24T14:15:22Z",
"active": true,
"metadata": {
"property1": null,
"property2": null
},
"enrollment_config": {
"property1": null,
"property2": null
},
"source": "string",
"external_id": "string",
"transaction_id": "string",
"change_type": "create"
}'
Response
application/json
{ "id": 0, "created": "2019-08-24T14:15:22Z", "started": "2019-08-24T14:15:22Z", "expired": "2019-08-24T14:15:22Z", "name": "string", "count": 0, "active": true, "metadata": { "property1": null, "property2": null }, "source": "string", "external_id": "string", "platform_key": "string", "usage_count": 0, "assignments": null }