Moov · Schema

UpdateAccountRequest

Request body for updating a Moov account. Only provided fields are updated.

BankingEmbedded FinanceFinancial InfrastructureMoney MovementPaymentsTransfers

Properties

Name Type Description
profile object
metadata object Custom key-value metadata to attach to the account.
foreignID string External identifier from your system.
View JSON Schema on GitHub

JSON Schema

moov-updateaccountrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateAccountRequest",
  "title": "UpdateAccountRequest",
  "type": "object",
  "description": "Request body for updating a Moov account. Only provided fields are updated.",
  "properties": {
    "profile": {
      "$ref": "#/components/schemas/AccountProfile"
    },
    "metadata": {
      "type": "object",
      "description": "Custom key-value metadata to attach to the account.",
      "additionalProperties": {
        "type": "string"
      }
    },
    "foreignID": {
      "type": "string",
      "description": "External identifier from your system."
    }
  }
}