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:
{
"country": "",
"type": "account",
"tokensMax30": "",
"themeValue": "",
"updated": 0,
"industry": "",
"businessServices": [],
"logo": "",
"googlePlaceId": "",
"agencyId": "",
"firstName": "",
"lastName": "",
"businessCategories": [],
"customFields": [],
"email": "",
"phone": "",
"createDate": {
"_seconds": 0,
"_nanoseconds": 0
},
"contentTypes": [],
"aISettings": {
"autoTagging": false,
"bcbb717588877b62774e6bd3b4a2": false,
"aIWriterInWebApp": false
},
"state": "",
"uid": "",
"pipelines": [],
"smartTags": [],
"contentSmartTags": [],
"template": {},
"destinations": [],
"description": "",
"verificationStatus": "",
"location": "",
"businessName": "",
"whitelabelDomain": "",
"inviteCode": "",
"userWatermark": {
"watermarkImage": "",
"name": ""
},
"zip": "",
"status": "",
"inviteDeepLink": "",
"role": "",
"website": "",
"subscriptionType": ""
}
Last updated