Authentication
check user
Check if a user is already registered to this campaign with a specific email address. This is useful for validation in a sign-up form to prompt an existing user to log in.
For custom components:
RaiselyComponents.api.all('check-user').post(data = {}, params = {}, headers = {}) => Promise<{result}>
:fa-gears: See Restie Response Data for a more detailed overview of responses through the client wrapper
post/check-user
Headers
Authorizationstring
A valid HTTP Bearer token, required to access private records.
Request body
Response
The response will indicate if the user is OK and can sign up to the campaign, or if they EXIST and should log in.
Example response
{
"status": "OK"
}