cURL
curl --request POST \ --url http://localhost:8080/links/{id}/products \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "products": [ "account_numbers", "transactions" ] }'
This response does not have an example.
Requests an update of the provided products for the link.
202 Accepted
curl -i -X POST \ 'http://localhost:8080/links/{id}/products' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'Content-Type: application/json' \ -H 'moneykit-version: 2023-02-18' \ -d '{ "products": [ "account_numbers", "transactions" ] }'
{ "error_code": "api_error.auth.expired_access_token", "error_message": "Access token expired", "documentation_url": "string" }
The access token received from the authorization server in the OAuth 2.0 flow.
The unique ID for this link.
Successful Response
Was this page helpful?