CurrencyCloud Connector
Prerequisites
Before you begin, make sure you have a CurrencyCloud account. If you don't have one, you can sign up for a CurrencyCloud account here. Make sure you have a CurrencyCloud API key, with the least amount of permissions required to access the functionality of the CurrencyCloud Connector you plan to use. You can find more information about how to create an API key here.
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
read "CC_LOGIN_ID"
read "CC_API_KEY"
fctl payments connectors install currencycloud $CC_API_KEY $CC_API_KEY
STACK="stack_123" \
read CC_LOGIN_ID && \
read CC_API_KEY && \
echo -X POST "https://$STACK.formance.cloud/api/payments/connectors/currencycloud" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TOKEN" \
-d "{ \
\"apiKey\": "$CC_API_KEY", \
\"loginID\": "$CC_LOGIN_ID", \
}"