Aaron's CUSTOMER DATA API

The CUSTOMER DATA API from Aaron's — 1 operation(s) for customer data.

Operations 4

GET /CustomerData/2 Customer data2 get #
PUT /CustomerData/2 Customer data2 create #
POST /CustomerData/2 Customer data2 post #
DELETE /CustomerData/2 Customer data2 delete #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/aarons-customer-data-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

aarons-customer-data-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: HPP Customer Data API
  version: '1.0'
servers:
- url: https://hpp.aarons.com/
tags:
- name: CUSTOMER DATA
paths:
  /CustomerData/2:
    parameters:
    - $ref: '#/components/parameters/Accept'
    get:
      tags:
      - CUSTOMER DATA
      operationId: CustomerData2_Get
      parameters:
      - name: TokenGuid
        in: query
        schema:
          type: string
      - name: SaveOnFile
        in: query
        schema:
          type: boolean
      - name: Email
        in: query
        schema:
          type: string
      - name: ApplicationId
        in: query
        schema:
          type: integer
          format: int32
      - name: TermsVersion
        in: query
        schema:
          type: string
      - name: Language
        in: query
        schema:
          type: string
      - name: SessionGuid
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerDataResponse'
      deprecated: false
      security:
      - Bearer: []
      summary: Customer data2 get
      x-summary-source: derived
    put:
      tags:
      - CUSTOMER DATA
      operationId: CustomerData2_Create
      parameters:
      - name: TokenGuid
        in: query
        schema:
          type: string
      - name: SaveOnFile
        in: query
        schema:
          type: boolean
      - name: Email
        in: query
        schema:
          type: string
      - name: ApplicationId
        in: query
        schema:
          type: integer
          format: int32
      - name: TermsVersion
        in: query
        schema:
          type: string
      - name: Language
        in: query
        schema:
          type: string
      - name: SessionGuid
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerDataResponse'
      deprecated: false
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomerData'
      summary: Customer data2 create
      x-summary-source: derived
    post:
      tags:
      - CUSTOMER DATA
      operationId: CustomerData2_Post
      parameters:
      - name: TokenGuid
        in: query
        schema:
          type: string
      - name: SaveOnFile
        in: query
        schema:
          type: boolean
      - name: Email
        in: query
        schema:
          type: string
      - name: ApplicationId
        in: query
        schema:
          type: integer
          format: int32
      - name: TermsVersion
        in: query
        schema:
          type: string
      - name: Language
        in: query
        schema:
          type: string
      - name: SessionGuid
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerDataResponse'
      deprecated: false
      security:
      - Bearer: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomerData'
      summary: Customer data2 post
      x-summary-source: derived
    delete:
      tags:
      - CUSTOMER DATA
      operationId: CustomerData2_Delete
      parameters:
      - name: TokenGuid
        in: query
        schema:
          type: string
      - name: SaveOnFile
        in: query
        schema:
          type: boolean
      - name: Email
        in: query
        schema:
          type: string
      - name: ApplicationId
        in: query
        schema:
          type: integer
          format: int32
      - name: TermsVersion
        in: query
        schema:
          type: string
      - name: Language
        in: query
        schema:
          type: string
      - name: SessionGuid
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerDataResponse'
      deprecated: false
      security:
      - Bearer: []
      summary: Customer data2 delete
      x-summary-source: derived
components:
  schemas:
    CustomerDataResponse:
      title: CustomerDataResponse
      properties:
        CreditCardType:
          type: string
        Last4:
          type: string
        Expiration:
          type: string
        Result:
          type: string
        FirstName:
          type: string
        LastName:
          type: string
        DeliveryAddress:
          $ref: '#/components/schemas/DeliveryAddress'
        BINData:
          type: string
      description: CustomerDataResponse
      type: object
    DeliveryAddress:
      title: DeliveryAddress
      properties:
        Address1:
          type: string
        City:
          type: string
        State:
          type: string
        ZipCode:
          type: string
      description: DeliveryAddress
      type: object
    CustomerData:
      title: CustomerData
      properties:
        ApplicationId:
          type: integer
          format: int32
        Email:
          type: string
        Language:
          type: string
        SaveOnFile:
          type: boolean
        SessionGuid:
          type: string
        TermsVersion:
          type: string
        TokenGuid:
          type: string
      description: CustomerData
      type: object
  parameters:
    Accept:
      name: Accept
      in: header
      description: Accept Header
      required: true
      schema:
        type: string
        enum:
        - application/json
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header