POST
/
signup
curl --request POST \
  --url https://v2.firstpromoter.com/api/v2/track/signup \
  --header 'Account-ID: <account-id>' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "<string>",
  "uid": "<string>",
  "tid": "<string>",
  "ref_id": "<string>",
  "ip": "<string>",
  "created_at": "<string>",
  "skip_email_notification": true
}'
{
  "id": 45831611,
  "etype": "signup",
  "sale_amount": null,
  "original_sale_amount": null,
  "original_sale_currency": null,
  "event_id": null,
  "plan_id": null,
  "billing_period": null,
  "created_at": "2025-04-25T09:29:51.973Z",
  "referral": {
    "id": 29203686,
    "email": "[email protected]",
    "uid": null
  },
  "commissions": []
}

Authorizations

Authorization
string
header
required

API key passed as a Bearer token in the Authorization header

Headers

Account-ID
string
required

Account identifier that specifies which account is making the request

Example:

"acc_123456"

Body

application/json

Response

200
application/json
Successful signup response

The response is of type object.