Developers use configuration endpoints to interact with their LinkMoney options, including their security details (IP allowlists, webhook endpoints), aggregator and data formatting options, permitted developers, and anything else pertaining to the developer's genera use of LinkMoney.
Endpoint: GET
/configuration
View the properties of your developer configuration.
This call requires no parameters.
curl -X GET /configuration \\
-H 'Authorization: Bearer {YOUR_BEARER_TOKEN}'
{
"configuration": {
"webhookIds": [ WebhookIDs ],
"dateFormat": "ISO",
"type": "plaid",
"name": "My developer configuration",
"ipAllowlist": [ ipAddresses ]
}
}
Endpoint: POST
/configuration
Create a new developer configuration for a LinkMoney integration.
curl -X POST /configuration \\
-H 'Authorization: Bearer {YOUR_BEARER_TOKEN}' \\
-d '{
"type": "plaid",
"name": "my developer configuration",
"ipAllowlist": []
}'