Envestnet · Schema

MerchantAddress

Address details of the merchant as identified by the system.

FinancialWealth ManagementOpen BankingAccount Aggregation

Properties

Name Type Description
city string City name as applicable to represent the Merchant address for a given User Transaction

Endpoints -
  • GET /views/{viewId}/transactions
state string State code as applicable to represent the Merchant address for a given User Transaction.

Endpoints -
  • GET /views/{viewId}/transactions
country string Country code as applicable to represent the Merchant address for a given User Transaction.

Endpoints -
  • GET /views/{viewId}/transactions
View JSON Schema on GitHub

JSON Schema

envestnet-merchantaddress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MerchantAddress",
  "title": "MerchantAddress",
  "description": "Address details of the merchant as identified by the system.",
  "properties": {
    "city": {
      "type": "string",
      "description": "City name as applicable to represent the Merchant address for a given User Transaction <br><br><b>Endpoints</b> -<ul><li>GET /views/{viewId}/transactions</li></ul>",
      "readOnly": true,
      "example": "Milwaukee"
    },
    "state": {
      "type": "string",
      "description": "State code as applicable to represent the Merchant address for a given User Transaction. <br><br><b>Endpoints</b> -<ul><li>GET /views/{viewId}/transactions</li></ul>",
      "readOnly": true,
      "example": "WI"
    },
    "country": {
      "type": "string",
      "description": "Country code as applicable to represent the Merchant address for a given User Transaction. <br><br><b>Endpoints</b> -<ul><li>GET /views/{viewId}/transactions</li></ul>",
      "readOnly": true,
      "example": "US"
    }
  }
}