Skip to main content
GET
/
api
/
v1
/
termsAndConditions
Get Terms and Conditions
curl --request GET \
  --url https://skala-sandbox.ripio.com/api/v1/termsAndConditions/ \
  --header 'Authorization: Bearer <token>'
{
  "termsId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "country": "AR",
  "version": "1.0",
  "url": "https://example.com/terms/v1.0"
}

Authorizations

Authorization
string
header
required

Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.

Response

Active Terms and Conditions retrieved successfully.

termsId
string<uuid>
required

Unique identifier for the Terms and Conditions.

Example:

"3fa85f64-5717-4562-b3fc-2c963f66afa6"

country
string
required

Country code these Terms and Conditions apply to.

Example:

"AR"

version
string
required

Version string of the Terms and Conditions.

Example:

"1.0"

url
string<uri>
required

URL where the full Terms and Conditions document can be read.

Example:

"https://example.com/terms/v1.0"