ibl-data-manager (3.59.0-ai-plus)
API for iblai
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/catalog/licenses/program/assignment/
https://base.manager.iblai.app/api/catalog/licenses/program/assignment/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.ibl.ai/_mock/apis/ibl/api/catalog/licenses/program/assignment/?active=true&email=user%40example.com&fulfilled=true&license_id=0&page=0&page_size=0&platform_key=string&platform_org=string&sort=id&user_id=0' \
-H 'Authorization: YOUR_API_KEY_HERE'
Response
application/json
{ "count": 0, "next_page": "http://example.com", "previous_page": "http://example.com", "results": [ { … } ] }
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/catalog/licenses/program/assignment/
https://base.manager.iblai.app/api/catalog/licenses/program/assignment/
- 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/program/assignment/?active=true&email=user%40example.com&fulfilled=true&license_id=0&page=0&page_size=0&platform_key=string&platform_org=string&sort=id&user_id=0' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"license_id": 0,
"user_id": 0,
"username": "string",
"email": "user@example.com",
"platform_key": "string",
"platform_org": "string",
"active": true,
"fulfilled": false,
"direct": true,
"redirect_to": "string",
"metadata": {
"property1": null,
"property2": null
}
}'
Response
application/json
{ "id": 0, "user_id": 0, "username": "string", "name": "string", "email": "user@example.com", "active": true, "fulfilled": true, "direct": true, "redirect_to": "http://example.com", "metadata": { "property1": null, "property2": null }, "created": "2019-08-24T14:15:22Z", "modified": "2019-08-24T14:15:22Z", "license_id": 0, "license_name": "string", "program_key": "string" }
- Mock server
https://docs.ibl.ai/_mock/apis/ibl/api/catalog/licenses/program/assignment/
https://base.manager.iblai.app/api/catalog/licenses/program/assignment/
- 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/program/assignment/?active=true&assignment_id=0&email=user%40example.com&fulfilled=true&license_id=0&page=0&page_size=0&platform_key=string&platform_org=string&sort=id&user_id=0' \
-H 'Authorization: YOUR_API_KEY_HERE'