Skip to main content
POST
/
api
/
partners
/
v2.0
/
auth
/
signup-confirm
Signup Confirm
curl --request POST \
  --url https://api.example.com/api/partners/v2.0/auth/signup-confirm \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "password": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "street_and_number": "<string>",
  "street_add_info": "<string>",
  "zip_code": "<string>",
  "town": "<string>",
  "country": "<string>"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "email": "<string>",
  "first_name": "<string>",
  "last_name": "<string>"
}

Body

application/json
token
string
required
password
string
required
first_name
string | null
last_name
string | null
street_and_number
string | null
street_add_info
string | null
zip_code
string | null
town
string | null
country
string | null

Response

Created

id
string<uuid>
required
organization_id
string<uuid>
required
email
string
required
first_name
string
required
last_name
string
required