---
title: "Update loyalty points balance"
method: POST
path: "/api/business/{businessId}/loyaltypoints"
tags: ["Loyalty Points"]
---

# Update loyalty points balance

`POST /api/business/{businessId}/loyaltypoints`

Update loyalty points for the specified business id

## Path parameters

- `businessId` string, required

## Request body

- LoyaltyPointsRequest
  - `clientId` string, required — The unique identifier of the client for which this loyalty points applies.
  - `branchId` string, required
  - `description` string, required
  - `pointsChange` integer, required — This represent the amount to either be added or deducted from the loyalty point
  - `date` string, date-time
  - `operationType` 'DEDUCT' | 'ADD', required — Represents the type of action to be performed. Both add and deduct from loyalty point are supported

## Response `200`

Loyalty points updated successfully

- LoyaltyPointsResponse
  - `clientId` string, required — The unique identifier of the client for which this loyalty points applies.
  - `branchId` string, required
  - `description` string, required
  - `pointsChange` integer, required — This represent the amount to either be added or deducted from the loyalty point
  - `date` string, date-time

## Other responses

- `400` — Loyalty Points data is invalid, unable to update loyalty points
- `429` — Request rate limit exceeded. Current limit set to 100 rps.
- `500` — An error occurred while performing the operation

---

[API](https://skmtc.net/phorest/apis/third-party-api.md) · [All operations](https://skmtc.net/phorest/apis/third-party-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/phorest/third-party-api/revisions/2218bc90d39c/schema)
