automation-hub
latest
false
- Open API
- Introduction to Automation Hub API
- Introduction to Automation Hub API (Automation Cloud Public Sector)
- API References
- Generate your Token from Automation Hub
- Authentication to the Automation Hub API
- Authentication to the Automation Hub API (Automation Cloud Public Sector)
- Add users in bulk to Automation Hub using OpenAPI
- Bulk edit users in Automation Hub using OpenAPI
- Retrieve Automation Idea in Idea Phase Awaiting Review Status
- Retrieve the Cost Benefit Analysis for a Specific Idea
- Update Automation Idea Phase and Status
- Retrieve a User Account
- Update Account Details for Employees from Automation Hub
- Inactivate User Accounts that are Not Part of the Company
- Power BI Integration Video Tutorial
- Service Now Outbound Integration Video Tutorial
- Input for Automation Pipeline
- Input for Submission Type
- Input for Phase
- Input for Status
- Input for Phase and Status Update
- Input for Business Unit
- Input for Applications
- Input for Category
- Input for Cost Benefit Analysis
- Input for High Level Assessment
- Input for Detailed Assessment
- Input for Automation Idea Creation Date
- Input for Users
- Input for User Status
- User Status Table
- Input for Collaborators
- Output Dictionary
- Automation Hub Open API Power Query Data Parsing
- Automation Hub Custom Connector
Automation Hub api guide
Last updated May 6, 2026
Automation Hub API authentication uses a simple static Bearer token in the header of each request. For information on how to create or find a Token, see Generate your Token from Automation Hub.
Example request (to the Auth Info endpoint):
GET https://<accessURL>/{orgName}/{tenantName}/automationhub_/api/v1/openapi/authinfo
Content-Type: application/json
Authorization: Bearer 46b6c342-3ab4-11e9-9c19-37a2344a67e8/ce91aa04-fc61-49e9-bec5-cb237efb4bda
x-ah-openapi-auth: openapi-token
GET https://<accessURL>/{orgName}/{tenantName}/automationhub_/api/v1/openapi/authinfo
Content-Type: application/json
Authorization: Bearer 46b6c342-3ab4-11e9-9c19-37a2344a67e8/ce91aa04-fc61-49e9-bec5-cb237efb4bda
x-ah-openapi-auth: openapi-token
The x-ah-openapi-auth value of openapi-token is static. The Authorization Bearer token is created by concatenating Tenant ID, the character /, and a Token.
E.g. 46b6c342-3ab4-11e9-9c19-37a2344a67e8/ce91aa04-fc61-49e9-bec5-cb237efb4bda is composed of:
- Tenant ID:
46b6c342-3ab4-11e9-9c19-37a2344a67e8 - Concatenating Character:
/ - Token:
ce91aa04-fc61-49e9-bec5-cb237efb4bda
Similar headers would be used in a request to any other Automation Hub API endpoint.