Skip to main content
POST
/
v2
/
partner
/
users
Create Partner User
curl --request POST \
  --url https://api.trykintsugi.com/v2/partner/users \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "email": "jsmith@example.com"
}
'
{
  "id": "<string>",
  "partnerId": "<string>",
  "email": "<string>",
  "role": "<string>",
  "status": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "userId": "<string>",
  "firstName": "<string>",
  "lastName": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.trykintsugi.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

Headers

x-partner-id
string | null
Maximum string length: 100

Body

application/json
email
string<email>
required
role
enum<string> | null
Available options:
OWNER,
ADMIN,
MEMBER

Response

Successful Response

id
string
required
partnerId
string
required
email
string
required
role
string
required
status
string
required
createdAt
string<date-time>
required
userId
string | null
firstName
string | null
lastName
string | null