/signup/selfserve
DevelopingPOST
/signup/selfserveLast modified: 2 months ago
Signs up a new self-serve organization and user. The new user will be sent a verification code via email, the details from which need to be submitted to /signup/verify.
Request
Body Params application/x-www-form-urlencoded
email
string
required
Email address of new user. Example: phil.collins@anomify.ai.
user_name
string
required
Name of the new user. Example: Phil Collins.
org_name
string
required
Name of the new user's organization. Example: Collins Jackets.
timezone
string
required
Valid timezone string selected from a dropdown list populated from /misc/timezones method. Example: Europe/London.
test_data
string
optional
Indicates whether this should be treated as test data which may be deleted periodically. String "true" or "false". Default is false if unspecified.
Request samples
Responses
An example Response(200)
An example Response
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
object {0}
Example
{
"status": {
"created_timestamp": 1657643627,
"created_string": "Tue 12 Jul 2022 @ 16:33 (UTC)",
"duration": 0.252,
"language": "en-gb",
"timezone": {
"timezone_type": 3,
"timezone": "UTC"
},
"code": 200,
"oldest_cached_component_age": 0,
"session_id": "1dedbf232bc104b6087327016c50ba45",
"org_onboarding_status_id": 300,
"api_host": "api-stage.anomify.ai",
"user_onboarding_flags": {
"main_intro": false,
"alerts_intro": false,
"alerts_from_search": false,
"training_intro": false,
"alert_created": false,
"test_alert_sent": false,
"two_alerts_sent": false,
"pattern_trained": false
}
},
"data": {
"user": {
"id": 244,
"org_id": 161,
"name": "Si Test 50",
"email": "si+ss50@anomify.ai",
"phone_number": null,
"slack_member_id": null,
"demo": false,
"admin": true,
"org": {
"id": 161,
"name": "Si Test 50 Org",
"timezone": "Europe/London",
"alert_muting": {
"muted": false,
"muted_until_timestamp": null,
"muted_until_timestamp_string": null,
"minutes_remaining": null
},
"onboarding_status_id": 50,
"connected_services": {
"slack": false,
"ms_teams": false
}
},
"notifications": {
"email_alerts": true
},
"onboarding_flags": {
"main_intro": false,
"alerts_intro": false,
"alerts_from_search": false,
"training_intro": false,
"alert_created": false,
"test_alert_sent": false,
"two_alerts_sent": false,
"pattern_trained": false
}
}
}
}
Last modified: 2 months ago