Account

Get Account Information

For multi-user clients, it may be useful to present the user with the email address registered on the simpl.rent platform.

GET /v2/account

Success Response
{
  "email": string
}
Request Example
curl --location --request GET 'https://api-test.simpl.rent/v2/account' \
--header 'Authorization: <API key>'

Get Account Products

Retrieve information about product orders, such as verification packages.

GET /v2/account/products

Success Response
{
  "products": [
    {
      "type": FULL_CHECK|IDENTITY_CREDIT_CHECK|IDENTITY_CHECK,
      "amount": number,
      "remaining": number,
      "createdAt": string,
      "validUntil": string
    }
  ]
}
Request Example
curl --location --request GET 'https://api-test.simpl.rent/v2/account/products' \
--header 'Authorization: <API key>'