Skip to main content
POST
/
api
/
v2
/
backoffice
/
savings
/
update-savings-strategy
cURL
curl --request POST \
  --url https://sandbox.killb.app/api/v2/backoffice/savings/update-savings-strategy \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "customerId": "31906011-08c1-4a37-9857-67f22c020f01",
  "removeSavingsProduct": true,
  "updateStrategy": [
    "ACH",
    "WIRE"
  ]
}
'
{
  "errorCode": "API_USER.0001",
  "arguments": [
    {
      "key": "email",
      "value": "[email protected]"
    }
  ],
  "message": [
    "User not found",
    "Account not found"
  ],
  "statusCode": "400"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
customerId
string
required
Example:

"31906011-08c1-4a37-9857-67f22c020f01"

removeSavingsProduct
boolean
required
Example:

true

updateStrategy
string[]
required
Example:
["ACH", "WIRE"]

Response

errorCode
string
required
Example:

"API_USER.0001"

arguments
object[]
required
message
string[]
required
Example:
["User not found", "Account not found"]
statusCode
string
required
Example:

"400"