SimplePay API
Overview
Our API is constantly being improved. This specification reflects the current endpoints directly from our codebase.
We provide hand-crafted client libraries for some programming languages that cover most endpoints, as well as versioning, security, and validation logic described in this specification. We generally recommend using them to consume our API.
This specification is intended for developers who, for some reason, choose not to use the official client libraries or those who want to generate a client library for a language that is not yet officially supported.
Authentication
Our API supports several authentication methods:
-
Personal Access Token (referred to as
PAT
)
Intended for server-side use in the context of a specific user, for managing the user's account.
It can be obtained in the Service Tokens section of the SimpleID portal. -
App Token (referred to as
AppToken
)
Intended for server-side use in the context of a specific app, to perform tasks required for the app's operation.
It can be obtained in the API keys section of app settings in the Console. -
OAuth 2 (referred to as
OAuth2
)
Intended for server-side use to manage accounts on behalf of users, after obtaining their consent.
Token can be obtained when someone signing in to your app using SimplePay as an OIDC provider.
You can create an OAuth Client to implement this integration in the OAuth Clients section of the Console. -
Cookie (referred to as
Cookie
)
Intended for use in browsers, primarily by our own frontends. It is described here only for reference and is generally not recommended for use by third parties (except perhaps by curious individuals experimenting with our API for fun or engaging in creative automation).
Support for authentication methods may vary from endpoint to endpoint.
Versioning
Most API endpoints use versioning. Each endpoint has its own independent version history, which is unrelated to the version of this specification.
The version should be passed as the v
query parameter. The value of this parameter is an integer that represents the major (backward-incompatible) version.
Changes are considered backward-incompatible if one or more request parameters or response properties are removed, renamed, or have their types changed, or if one or more required request parameters are added.
The addition of response properties is considered backward-compatible, and the version is not incremented in such cases. API consumers should be designed to ignore any unknown response properties without producing errors.
Parameters, properties, and endpoints not explicitly defined in this specification should be treated as internal or experimental and may change at any time without prior notice or version increment.
Idempotency
Some endpoints that mutate data or perform actions (POST
, PUT
, DELETE
) supports idempotency.
You may pass random UUIDv4 as the Idempotency-Key
header, and subsequent requests with the same key will return the same status code and response body, without performing any mutations or actions.
This behavior is not guaranteed for requests made in more than 24 hours after the first one.
CSRF Protection
Some endpoints that mutate data (POST
, PUT
, DELETE
) are protected against CSRF.
When using Cookie
authentication method (what normally you should avoid), you should pass an anti-CSRF token as the X-Csrf-Token
header.
To obtain this token, you should make a request to a GET
endpoint in the same group and then pass the received X-Csrf-Token
header along with the csrf_
cookie in subsequent requests.
In other words, call GET /something
before POST /something
.
Anti-CSRF token lifetime is 1 hour.
Rate limits
Currently there is no rate limits set, however we may introduce them in future without prior notice. You will likely never get anywhere near them unless you intentionally spam our API, but you may decide to implement graceful retries in your consumer.
In case rate limit triggered, 429
status code will be returned with Retry-After
header, that indicates how many seconds consumer should wait before repeating the request.