Skip to main content
POST
/
inventory
/
members
/
manual-payment
Manual Payment
curl --request POST \
  --url https://api.decodahealth.com/inventory/members/manual-payment \
  --header 'API-KEY: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'TENANT: <tenant>' \
  --data '
{
  "memberId": "<string>",
  "paymentMethodId": "<string>",
  "comment": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Headers

TENANT
string
required

The tenant you are making this request on behalf of

API-KEY
string
required

Your api key

Body

application/json
memberId
string
required

ID of the member to make a manual payment for

paymentMethodId
string | null

New payment method ID (optional, only updates if provided)

comment
string | null

Comment explaining the payment method change

Response

Successful Response