Skip to main content
POST
/
v1
/
referrals
/
activate
Activate a referral code
curl --request POST \
  --url https://api.strait.dev/v1/referrals/activate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "<string>",
  "referred_email": "<string>",
  "referred_org_id": "<string>"
}
'
{
  "$schema": "<string>",
  "detail": "<string>",
  "errors": [
    {
      "location": "<string>",
      "message": "<string>",
      "value": "<unknown>"
    }
  ],
  "instance": "<string>",
  "status": 123,
  "title": "<string>",
  "type": "about:blank"
}

Documentation Index

Fetch the complete documentation index at: https://docs.strait.dev/llms.txt

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

Authorizations

Authorization
string
header
required

API key passed as Bearer token

Body

application/json
code
string
required
referred_email
string
required
referred_org_id
string
required

Response

OK