HATEOAS Link

HATEOAS (Hypermedia As The Engine Of Application State) link

Financial DataOpen BankingOpen FinanceFinancial Data ExchangeConsumer PermissionedAccount DataTransactionsInvestmentsInsuranceTax DataPayrollRESTOAuth2FAPICFPB 1033

Properties

Name Type Description
href string The resource URL
action object The HTTP method to use for the request
rel string The relation of this link to its containing entity, as defined by the [IETF RFC5988](https://datatracker.ietf.org/doc/html/rfc5988)
types array The content-types that can be used in the Accept header. **Note:** Plaid currently only accepts the PDF (`application/pdf`) content type
View JSON Schema on GitHub

JSON Schema

fdx-hateoaslink.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "HATEOAS Link",
  "description": "HATEOAS (Hypermedia As The Engine Of Application State) link\n",
  "required": [
    "href"
  ],
  "type": "object",
  "properties": {
    "href": {
      "type": "string",
      "format": "uri-reference",
      "description": "The resource URL\n",
      "example": "https://api.fi.com/fdx/v4/accounts/12345"
    },
    "action": {
      "description": "The HTTP method to use for the request\n",
      "$ref": "#/components/schemas/HttpAction"
    },
    "rel": {
      "description": "The relation of this link to its containing entity, as defined by the [IETF RFC5988](https://datatracker.ietf.org/doc/html/rfc5988)\n",
      "type": "string"
    },
    "types": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ContentTypes"
      },
      "description": "The content-types that can be used in the Accept header. **Note:** Plaid currently only accepts the PDF (`application/pdf`) content type\n"
    }
  }
}