Skip to main content
POST
/
api
/
v1
/
customer
/
invites
/
{token}
/
accept
Accept Invitation
curl --request POST \
  --url https://api.example.com/api/v1/customer/invites/{token}/accept \
  --header 'Content-Type: application/json' \
  --data '
{
  "password": "StrongPass!1"
}
'
{
  "statusCode": 400,
  "message": "Bad Request Error",
  "errors": [
    {
      "code": "invalid_type",
      "message": "Required",
      "path": "name"
    }
  ]
}

Path Parameters

token
string
required

Invitation token.

Query Parameters

fields
string

Comma-separated list of fields to include in the response. Supports dot notation.

Body

application/json

Accept customer invitation payload.

password
string
required

New password.

Minimum string length: 8
Example:

"StrongPass!1"

Response

No Content