MerchantsInvite a merchant

Invite a merchant

Creates a one-time invite for merchant signup. Returns a signup link and its validity in seconds

curl -X POST "https://api.example.com/api/v1/merchants/invite" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)"
{
  "signupLink": "https://app.example.com/v1/merchants/signup?token=abc123",
  "expiresIn": 7200
}
POST
/api/v1/merchants/invite
POST
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token (JWT)
Bearer Tokenstring
Required

Bearer token (JWT) - just enter the token, "Bearer" prefix will be added automatically

Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). Authentication token required.

Responses