Atlar Connector
Prerequisites
Before you begin, you need to have a Atlar account. If you don't have one, you can sign up for a Atlar account here. Make sure you have a Atlar AccessKey, Secret and base URL, with the least amount of permissions required to access the functionality of the Atlar Connector you plan to use.
info
Make sure to create an API key dedicated to Formance. Doing so will improve your auditability and security and will allow you to revoke access to Formance at any time if needed.
Setup
- fctl
- curl
fctl payments connectors install atlar atlar.json
curl -X POST "https://$STACK.formance.cloud/api/payments/connectors/atlar" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TOKEN" \
-d @atlar.json
With atlar.json containing:
{
"name": "atlar",
"baseUrl": "<baseURL>",
"accessKey": "<accessKey>",
"secret": "<secret>",
"pollingPeriod": "2m",
"pageSize": 25
}