Update provider

PATCH
/providers/{providerID}

Update your provider record. Currently only shortName is supported. Returns 200 with the updated record.

Auth: API key or bearer token. The providerID in the path must be your account.

Request
cURL
curl -X PATCH https://api.moov.money/providers/{providerID} \
  -H "Content-Type: application/json" \
  -d '{
  "shortName": "ACME"
}'
Responses
200 400 401 403
The request completed successfully.
{
  "shortName": "ACME"
}
Malformed request: the body or headers failed validation.
Authentication missing, invalid, or insufficient.
Authentication present but the action is forbidden for this principal/claim.

Headers

X-Moov-Version

string
Set this header to the API version being targeted (e.g. v2026.07.00). When omitted, the server applies its default version.

Path parameters

providerID

string required
Your provider account ID.

Request

application/json
Fields to update on your provider record. Currently only shortName is supported.

shortName

string [2 to 12] characters required
Short, machine-friendly identifier for your provider. Moov Money composes the dynamic descriptor surfaced on the recipient’s card statement on payout settlement (e.g. ACME becomes ACME*JANE S). Must be 2-12 characters and contain only ASCII letters and digits.

Response

Your updated provider record.

shortName

string required
Short, machine-friendly identifier for your provider, used to compose the dynamic descriptor on the recipient’s card statement.