Skip to main content

Registration

info

To preserve compatibility, this endpoint responds to requests for v1 through v3.

This endpoint allows users to register for a Sentry Interactive account; the call will fail with a 409 conflict error if there is a pending invite (unless force is set to true).

HTTP Request

POST https://api.doordeck.com/auth/register

Request Headers

HeaderRequiredDescription
Accepttrueapplication/vnd.doordeck.api-v3+json

Request Parameters

ParameterRequiredDescription
emailtrueEmail address to register.
passwordtruePassword for access to account.
displayNamefalseUser's display name (e.g. their fullname)

Query Parameters

ParameterRequiredDescription
forcefalseBoolean flag to indicate if a pending invite should be discarded and a new account created
Validation Email

A validation email will be dispatched to the user's email address upon successful registration.

Example

CURL
curl "https://api.doordeck.com/auth/register" \
-X POST \
-H "Accept: application/vnd.doordeck.api-v3+json" \
-H 'content-type: application/json' \
--data-binary '{"email":"EMAIL","password":"PASSWORD"}'
Remember

Replace USERNAME and PASSWORD with your credentials.