Skip to main content
POST
/
sign_up
cURL
curl --request POST \
  --url https://api.umified.com/api/v1/sign_up/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'email=<string>' \
  --form 'password=<string>'
{
  "result": {
    "refresh_token": "<A long-lived token used to obtain new access tokens.>",
    "access_token": "<The primary token (Firebase ID token) used to authenticate API requests and verify the user's identity.>",
    "expires_in": "3600",
    "local_id": "<A unique identifier for the user in Firebase Authentication>"
  },
  "message": "You are registered successfully.",
  "status_code": 201,
  "destination": null
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data

Credentials in form-data.

email
string
required

Email for sign up

password
string
required

Password for sign up

Response

Response

result
object
required
message
string
required
Example:

"You are registered successfully."

status_code
integer
required
Example:

201

destination
string | null
required
Example:

null