Create User

Create a new user in the system

The /user endpoint allows you to create in the system.

This endpoint requires authentication with a JWT token or API key.

POST https://api.instantuploader.com/user

Example: /user

Request Body

Name
Type
Description

email*

String

Example:

POST /user HTTP/1.1
Host: api.instantuploader.com
Authorization: Bearer <your_token_or_api_key>
Content-Type: application/json

{
  "userId": "<userId>",
  "country": "<country>"
}

Example response:

Last updated