User
The user endpoint allows you to create and update application users.
The user object
appId string
The id of the application that the user belongs to.
externalId string
In combination with your application id this attribute uniquely identifies an application user. It is recommended to set this to be the primary key of the user in your app.
email string
The email for the user.
emailPreferences string enum
A string enum representing the email preferences of the user. Possible values are ALL_EMAILS
or NO_NOTIFICATIONS
.
Create user
POST
https://app.noftifly.io/api/user
Allows creating a user.
Headers
Authorization: Basic
string
Value should be a base64 encoded string of "app_id:app_secret"
Request Body
externalId
string
Should be the primary key of the user in your app, or a similar unique identifier
string
User's email address
Update a user
PATCH
https://app.noftifly.io/api/user
Allows updating an existing user.
Headers
Authorization: Basic
string
base64 encoded string of "app_id:app_secret"
Request Body
externalId
string
Used to identify the user to be updated. Cannot be modified.
string
emailPreferences
string
Valid values are "ALL_EMAILS" or "NO_NOTIFICATIONS".
Last updated