POST
/
partner
/
v1
/
users
curl --request POST \
  --url https://api.paywise.de/partner/v1/users/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "[email protected]",
  "first_name": "Max",
  "last_name": "Mustermann",
  "company": "6196ba03-83f2-46ea-83e1-a087bd0c5acc",
  "skip_email_verification": true,
  "notification_channels": [
    {
      "channel_type": "EMAIL",
      "value": "[email protected]",
      "notification_types": [
        "REQUESTS_TO_CLIENT",
        "STATUS_UPDATE",
        "STATEMENTS"
      ]
    }
  ]
}'
{
  "href": "https://api.paywise.de/partner/v1/users/ab5fc850-7bb3-4c33-9741-d1305dfa41d9/",
  "id": "ab5fc850-7bb3-4c33-9741-d1305dfa41d9",
  "email": "[email protected]",
  "first_name": "Max",
  "last_name": "Mustermann",
  "company": "6196ba03-83f2-46ea-83e1-a087bd0c5acc",
  "email_verified": true,
  "notification_channels": [
    {
      "channel_type": "EMAIL",
      "value": "[email protected]",
      "notification_types": [
        "REQUESTS_TO_CLIENT",
        "STATUS_UPDATE",
        "STATEMENTS"
      ]
    }
  ]
}
Note that this endpoint requires the permission API_ONLY_ONBOARDING on your API Key
This endpoint will return a 400 Status Code in case the email address provided is already in use

Authorizations

Authorization
string
header
required

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

Body

email
string
required

E-Mail des Benutzers

Minimum length: 1
first_name
string
required

Vorname des Benutzers

Minimum length: 1
last_name
string
required

Nachname des Benutzers

Minimum length: 1
company
string
required

UUID of the company that the user is going to be part of

id
string
Minimum length: 1
notification_channels
object[]

Notification settings for the user

skip_email_verification
boolean
default:false

Use this flag to indicate that you already validated the user's email address in advance. This way you can start sending claims right away, without waiting for user opt-in

Response

201
application/json
href
string
required
email
string
required

E-Mail des Benutzers

first_name
string
required

Vorname des Benutzers

last_name
string
required

Nachname des Benutzers

company
string
required

UUID of the company that the user is going to be part of

email_verified
boolean
required
id
string
notification_channels
object[]

Notification settings for the user