tastytrade · Example Payload

Accounts And Customers Getcustomerscustomerid

customers

Accounts And Customers Getcustomerscustomerid is an example object payload from tastytrade, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarytagsparameters

Example Payload

Raw ↑
{
  "operationId": "getCustomersCustomerId",
  "method": "GET",
  "path": "/customers/{customer_id}",
  "summary": "Get a full customer resource.",
  "tags": [
    "customers"
  ],
  "parameters": [
    {
      "name": "customer_id",
      "in": "path",
      "required": true
    },
    {
      "name": "allow-missing",
      "in": "query",
      "required": false
    }
  ]
}