Introduction
Here you'll find introductory information for our API, Workflows (Power Automate Connector), and Webhooks.
Use Cases
The Athennian API is generally a seperate add-on which allows your teams the ability to scale by engineering integration automation and tailored customization within and between Athennian accounts as well as most other platforms.
Popular Workflows:
- Workday / HR for updating principal affiliations.
- Expanded data centralization and reporting via Microsoft Power BI, Snowflake, etc.
- Entity approvals and formations via Power Automate.
- Expanded access management for PortCos and subsidiaries.
- D&O questionnaires / surveys
- Monthly registration renewal management including invoicing and more.
Product Specs
Technical Documentation
As a brief example, through our API, you could pull 100 entity names and IDs by configuring the query below in an app like Postman:
API Request:
query {
entities(
options: {limit:100, skip:0})
{name, id}
}API Response:
{ "data": {
"entities": [
{"name": "Entity A",
"id": "663c47...417b"},
{"name": "Entity B",
"id": "663c48...6b1f4c"}
]
}}Webhooks
Contact your Athennian representative to learn about pricing and more (may need to be paired with API).
Collection: Tasks
Operations: Insert, Update
Fields / Data: Assignee, Details, Due date, Name, Priority, Status, and Tags
Response: Data points that have changed in this event primarily. Additionally, the Context / Task ID can be used in tandem with our API query to get additional details.
Task Sample:
Response Sample:
{
"type": "object",
"properties": {
"collection": {
"type": "string"
},
"operation": {
"type": "string"
},
"context": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"data": {
"type": "object",
"properties": {
"assignee": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"email": {
"type": "string"
}
}
},
"details": {
"type": "string"
},
"due_date": {
"type": "string"
},
"name": {
"type": "string"
},
"priority": {
"type": "string"
},
"status": {
"type": "string"
},
"tags": {
"type": "array"
}
}
}
}
}Power Automate Athennian Workflows
Contact your Athennian representative to learn about pricing, setup, management, and more (may need to be paired with API).
Entity Formation Approval Example:
Athennian Workflows:
Athennian Power Automate Flows: