JWT access token - Generate
Sandbox
Sandbox
POST
/auth
authentication
apiKey
to be able to authenticate to the Easytransac API V2.Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
apiKey
string <password>
required
>= 64 characters<= 64 characters
Match pattern:
^et_(live|test)_[a-z0-9]{11}-[a-z0-9]{8}-[a-z0-9]{8}-[a-z0-9]{8}-[a-z0-9]{8}-[a-z0-9]{8}$
Example
{
"apiKey": "et_test_abcabcabc12-abcabc12-abcabc12-abcabc12-abcabc12-abcabc12"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.sandbox.easytransac.com/v2/auth' \
--header 'Content-Type: application/json' \
--data-raw '{
"apiKey": "et_test_abcabcabc12-abcabc12-abcabc12-abcabc12-abcabc12-abcabc12"
}'
Responses
🟢200OK
application/json
Body
success
boolean
required
date
string <date-time>
required
data
object
required
token
string
required
>= 1 characters
expiresIn
integer
required
token
(seconds)>= 1
expiresDate
string <date-time>
required
token
(ATOM)Example
{
"success": true,
"date": "2024-12-31T23:59:59+02:00",
"data": {
"token": "ABCabc123.ABCabc123.ABCabc123",
"expiresIn": 300,
"expiresDate": "2024-12-31T23:59:59+02:00"
}
}
🟠400Bad Request
🟠401Unauthorized