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.


View Developer Configuration Details.

Endpoint: GET /configuration

View the properties of your developer configuration.

Parameters

This call requires no parameters.

Example Request

curl -X GET /configuration \\
	-H 'Authorization: Bearer {YOUR_BEARER_TOKEN}'

Response

{
	"configuration": {
		"webhookIds": [ WebhookIDs ], 
		"dateFormat": "ISO",
		"type": "plaid",
		"name": "My developer configuration",
		"ipAllowlist": [ ipAddresses ]
	}
}

Create a New Developer Configuration.

Endpoint: POST /configuration

Create a new developer configuration for a LinkMoney integration.

Parameters

For the POST body

Example Request

curl -X POST /configuration \\
	-H 'Authorization: Bearer {YOUR_BEARER_TOKEN}' \\
	-d '{
		"type": "plaid",
		"name": "my developer configuration",
		"ipAllowlist": []
	}'