For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Transaction Limits

You will be able to retrieve the remaining transaction limits of a particular user based on your spec sheet and transactions they have already created.

GET /users/{{user_id}}/transaction-limit?destination={{countryCode}}

Field
Required
Type
Description

country

Response

String

2-letter ISO code of the user’s country.

current_tier

Response

Numeric

Current tier of the user

remaining_limit

Response

Object

Remaining transaction limits of the user in the current tier

remaining_limit.annual_limit

Response

Numeric

Remaining annual transaction limit of the user in the current tier

remaining_limit.monthly_limit

Response

Numeric

Remaining monthly transaction limit of the user in the current tier

remaining_limit.daily_limit

Response

Numeric

Remaining daily transaction limit of the user in the current tier

user_id

Response

UUID

UUID of the user

curl --location --request GET '{{url}}/users/{{user_id}}/transaction-limit?destination='\''US'\''' \
--header 'X-Client-Id:{{client_id}} ' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'
{
	"country": "US",
	"current_tier": 1,
	"remaining_limit": {
    	"annual_limit": 9200.00,
    	"daily_limit": 200,
    	"monthly_limit": 4200.00
	},
	"user_id": "868a53c0-26b9-47d5-b79d-c7833842a681"
}

Last updated