Remove a Savings Goals
The DELETE goals/v1/savings
endpoint removes all savings goals for a given customer.
If you would like to delete a specific goal you can do so by specifying an id
in the URL of the endpoint such as
curl --request DELETE \
--url https://api-sandbox.thisisbud.com/goals/v1/savings/81a68821-dca6-4771-80d4-002c7fce412e \
--header 'X-Client-Id: ecfa9b53-963b-4f8a-9811-e09a79ff7019' \
--header 'X-Customer-Id: 2a7a1f1c-18b9-4af1-8424-91c5848e8037' \
--header 'X-Customer-Secret: 2efbed02ac697a80354e0a792bbe733aed904820d030321a0b50b51c1dd05bd3' \
--header 'accept: application/json' \
--header 'authorization: Bearer dddd'
This endpoint will return a 204
if the deletion has been successful.
In the case that the customer doesn't have a goal with an id
that matches the id
provided in the request, a 404
is returned.
If you receive a 400
response, please check the headers you're sending in the request before trying again.
If you receive a 401
response from either of the endpoints this would indicate that you are not authorised to make this request, if you believe this to be a mistake or are receiving persistent 500
responses please raise a support request.
If you have any questions, please contact us via the chatbot (bottom-right of screen 👉) or via a support request or check our FAQs.
Updated about 1 year ago