Skip to main content
POST
/
bitlogin
/
api
/
open
/
v1
/
loyalty
/
point-conversion
Set point conversion tiers
curl --request POST \
  --url https://api.bitbybit.studio/bitlogin/api/open/v1/loyalty/point-conversion \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "tiers": [
    {
      "currencyAmount": "<string>",
      "points": 2
    }
  ]
}
'
{
  "companyId": 123,
  "tiers": [
    {
      "id": "<string>",
      "currencyAmount": 123,
      "points": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://knowledge.bitbybit.studio/llms.txt

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

Authorizations

x-api-key
string
header
required

API key for authentication. Create one in Settings > Developer.

Body

application/json
tiers
object[]
required

Response

200 - application/json

Success

companyId
integer
tiers
object[]