Reflex API Reference
Programmatic access to Reflex’s compliance and risk management features.
Endpoint
https://reflex.amboss.tech/graphqlAuthentication
Include your API key in the request header:
Authorization: Bearer [API_KEY]Create an API key at account.amboss.tech/settings/api-keys . See the Developer docs for detailed authentication instructions.
Key Operations
Running Workflows
Create workflow runs to check nodes, invoices, and addresses:
mutation.gql
mutation Create($input: WorkflowRunInput!) {
workflows {
runs {
create(input: $input) {
workflow_run_id
}
}
}
}See the guides for complete examples:
Webhook Configuration
Retrieve your team’s webhook secret for payload authentication:
query.gql
query Team {
getUser {
team {
webhook_secret
}
}
}