Download OpenAPI specification:Download
Welcome to the Cosmopoints API documentation. The service simplifies transactions with loyalty programs by aggregating different APIs into a single, consistent interface.
Before starting to use the Cosmopoints APIs, you must authenticate yourself using the supplied Client ID and Client Secret.
clientId required | string Unique ID for your app |
clientSecret required | string Secret key for your app |
{- "clientId": "string",
- "clientSecret": "string"
}
{- "accessToken": "string",
- "expiresIn": 600
}
Retrieve a list of all your enabled partner programs along with the price per point in USD and in the program currency.
[- {
- "id": "string",
- "pricePerPointInUsd": 0.1,
- "pricePerPoint": 0.1,
- "minAmountOfPoints": 0,
- "maxAmountOfPoints": 0,
- "minValue": 0,
- "maxValue": 0,
- "currency": "string"
}
]
Validate if a user is a valid member of a specific program.
destinationUserId | string This field may be optional or mandatory depending on the partner program. Please use the Get Program Fields endpoint to check if it is required |
destinationUserEmail | string This field may be optional or mandatory depending on the partner program. Please use the Get Program Fields endpoint to check if it is required |
{- "destinationUserId": "string",
- "destinationUserEmail": "string"
}
{- "isValid": true
}
Preview the points with a specific partner. This endpoint will compute the value of points to be created with this partner
programId required | string The program id of the desired partner |
value required | integer The value denominated in the configured fiat program for your organization |
{- "programId": "string",
- "value": 0
}
{- "totalPoints": 0
}
Issue points with a specific partner. This endpoint will create a new transaction record in the database.
programId required | string The program id of the desired partner |
value required | integer The value denominated in the configured fiat program for your organization |
required | object (DestinationAccount) The destination user object. Mandatory and optional fields may vary per partner program. Please use the |
referenceNumber required | string The transaction reference number provided by the calling application |
description | string Short description to attach to the transaction |
{- "programId": "string",
- "value": 0,
- "destinationAccount": {
- "destinationUserId": "string",
- "destinationUserEmail": "user@example.com"
}, - "referenceNumber": "string",
- "description": "string"
}
{- "id": "string",
- "totalPoints": 0,
- "referenceNumber": "string",
- "date": "string"
}
Retrieve all transactions in a specific interval.
startDate required | string The starting date in epoch (seconds, 10 digits) |
endDate required | string The end date in epoch (seconds, 10 digits) |
programId | string The program id of the desired partner |
page | number The number of the page to retrieve |
pageSize | number The number of items per page (default 25, max 5000) |
{- "total": 0,
- "data": [
- {
- "id": "string",
- "referenceNumber": "string",
- "sourceValue": 0,
- "description": "string",
- "createdAt": "string",
- "pointTransactions": [
- {
- "destinationNumberOfPoints": "string",
- "type": "string"
}
], - "partnership": {
- "destination": {
- "name": "string",
- "programId": "string"
}
}
}
]
}
Get a single transaction record by Transaction ID or Reference Number.
transactionId required | string Either the transaction identifier issued by Cosmopoints, or the transaction reference number provided by the calling application |
{- "id": "string",
- "referenceNumber": "string",
- "sourceValue": 0,
- "description": "string",
- "createdAt": "string",
- "destinationUserId": "string",
- "pointTransactions": [
- {
- "destinationNumberOfPoints": "string",
- "type": "string"
}
], - "partnership": {
- "destination": {
- "name": "string",
- "programId": "string"
}
}
}
Retrieve program connections for a specific user id.
sourceUserId required | string The user identifier with your organization - Identifier might be opaque |
programId | string The program id of the desired partner |
[- {
- "id": "string",
- "destinationUserId": "string",
- "destinationUserEmail": "string",
- "programId": "string",
- "updatedAt": "string",
- "createdAt": "string"
}
]
Create or update a program connection for a specific user id.
programId required | string The program id of the desired partner. |
required | object (DestinationAccount) The destination user object. Mandatory and optional fields may vary per partner program. Please use the |
sourceUserId required | string The user identifier with your organization. |
sourceUserEmail | string The user email with your organization. |
{- "programId": "string",
- "destinationAccount": {
- "destinationUserId": "string",
- "destinationUserEmail": "user@example.com"
}, - "sourceUserId": "string",
- "sourceUserEmail": "string"
}
{- "id": "string",
- "sourceUserId": "string",
- "sourceUserEmail": "string",
- "programId": "string",
- "destinationUserId": "string",
- "destinationUserEmail": "string",
- "updatedAt": "string",
- "createdAt": "string"
}
Retrieve program connections history.
startDate | string The starting date in epoch (seconds, 10 digits) |
endDate | string The end date in epoch (seconds, 10 digits) |
page | number The number of the page to retrieve |
pageSize | number The number of items per page (default 25, max 5000) |
{- "total": 0,
- "data": [
- {
- "id": "string",
- "event": "string",
- "sourceProgramUserId": "string",
- "timestamp": "string"
}
]
}
Issue points with a specific partner. This endpoint will create a new transaction record in the database.
programId required | string The program id of the desired partner |
value required | integer The value denominated in the configured fiat program for your organization |
required | object (DestinationAccount) The destination user object. Mandatory and optional fields may vary per partner program. Please use the |
referenceNumber required | string The transaction reference number provided by the calling application |
description | string Short description to attach to the transaction |
originalProgramId required | string The original program id |
{- "programId": "string",
- "value": 0,
- "destinationAccount": {
- "destinationUserId": "string",
- "destinationUserEmail": "user@example.com"
}, - "referenceNumber": "string",
- "description": "string",
- "originalProgramId": "string"
}
{- "id": "string",
- "totalPoints": 0,
- "referenceNumber": "string",
- "date": "string"
}