Authentication
Get password reset token.
Param | Type | Required | Description |
Authorization | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
TODO | string | yes | Bearer token containing API key |
{}
Reset password.
Param | Type | Required | Description |
Authorization | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
TODO | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
TODO | string | yes | Bearer token containing API key |
{}
Initiate a forgot password flow.
Param | Type | Required | Description |
Authorization | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
TODO | string | yes | Bearer token containing API key |
{}
Accept a team invite.
Param | Type | Required | Description |
Authorization | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
TODO | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
TODO | string | yes | Bearer token containing API key |
{}
View an existing invite.
Param | Type | Required | Description |
Authorization | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
TODO | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
TODO | string | yes | Bearer token containing API key |
{}
This endpoint will a new team, new account, generic schemas and a default datalake for the new team.
Param | Type | Required | Description |
Authorization | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
TODO | string | yes | Bearer token containing API key |
200 - Account created successfully
{
"id": "d0af3a8d-4f58-4d68-9398-d47ac7368bab",
"name": "mark test",
"email": "[email protected]",
"onboarding_state": "ONBOARD",
"onboarding_state_status": "PROCESSING",
"team": {
"id": "42b73c94-6666-4acd-9dda-d99a45f302d9",
"name": "test-123"
}
}
422 - Bad or missing value for a field
{
"errors": [
{
"code": 422,
"domain": "account",
"field": "full_name",
"status": "invalid",
"raw_error": "",
"message": "cannot be blank"
}
]
}
Logs an account out of the API, invalidating the JWT token.
Param | Type | Required | Description |
Authorization | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
TODO | string | yes | Bearer token containing API key |
200 - Logged out
Log into the API as an account.
Param | Type | Required | Description |
Authorization | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
TODO | string | yes | Bearer token containing API key |
200 - Successful login
{
"id": "bc74ad96-be53-4657-a524-705545510dcc",
"name": "mark test",
"email": "[email protected]",
"onboarding_state": "ONBOARD",
"onboarding_state_status": "PROCESSING",
"team": {
"id": "9c3d4691-1788-46fd-a30f-8eb0b66cb5e1",
"name": "test-1"
}
}
Last modified 1yr ago