APIs for Uniphore Business AI platform spanning data, knowledge, models, and agents.
API Reference
/- Actions Count Per Integration
List All Actions
Save Action
Delete Integration
Fetch Action Parameters
Upload Openapi Spec File
Get Workato User Mapper
Save User Mapper
Get Access Params
Save Access Params
Get Actions As Functions
Fetch Actions As Functions
Execute Actions
Download File
Execute Actions
Slack Callback
Get Auth Url Generate
Get Auth Url
Outlook Callback
Actions Count Per Integra...
Uniphore Business AI Cloud (1.0.0)
Metadata
Key | Value |
---|---|
owner | Uniphore Technologies Pvt Ltd |
team | Business AI |
department | Engineering |
status | Beta |
- Demo Instance for Uniphore Business AI Cloud
https://forge-api-gateway-x-forge.dev.uniphorecloud.com/darwin/v1/actions
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://forge-api-gateway-x-forge.dev.uniphorecloud.com/darwin/v1/actions?tenant_id=test' \
-H 'authorization: '
Response
application/json
{ "status": {}, "id": {} }
- Demo Instance for Uniphore Business AI Cloud
https://forge-api-gateway-x-forge.dev.uniphorecloud.com/darwin/v1/actions/count
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://forge-api-gateway-x-forge.dev.uniphorecloud.com/darwin/v1/actions/count?tenant_id=test' \
-H 'authorization: '
Response
application/json
[ { "integration_name": {}, "action_count": {} } ]
- Demo Instance for Uniphore Business AI Cloud
https://forge-api-gateway-x-forge.dev.uniphorecloud.com/darwin/v1/action-parameters
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://forge-api-gateway-x-forge.dev.uniphorecloud.com/darwin/v1/action-parameters?tenant_id=test' \
-H 'Content-Type: application/json' \
-H 'authorization: ' \
-d '{
"action_name": {},
"integration_name": {}
}'
Response
application/json
{ "endpoint": {}, "method": {}, "description": {}, "parameters": [ { … } ], "input_json_properties": [ { … } ], "output_json_responses": [ { … } ] }