> ## Documentation Index
> Fetch the complete documentation index at: https://docs-test.symmetry.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve account information

> Returns account information and transaction count between two dates (passed as a POST request).



## OpenAPI

````yaml /ste/api-reference/ste-hosted-api.yaml post /v1/accountInfo
openapi: 3.0.3
info:
  title: STE Hosted API
  description: Symmetry Tax Engine Hosted API
  version: all
  termsOfService: https://www.symmetry.com/terms
  contact:
    name: Symmetry Website
    url: https://www.symmetry.com/
servers:
  - url: https://ste.symmetry.com/ste-hosted
security:
  - apiKey: []
tags:
  - name: Account Information and Schema
    description: Account information and schema retrieval endpoints
  - name: Benefits
    description: Employee benefits status and information
  - name: Location Code
    description: Location code lookup
  - name: Location Tax Information
    description: Location-based tax information and configuration
  - name: Payroll Calculations
    description: Payroll tax calculation endpoints
  - name: Tax Information
    description: Tax ID and reference information
  - name: Documentation
    description: API documentation and specification
  - name: STEVersions
    description: Installed STE database version discovery
paths:
  /v1/accountInfo:
    post:
      tags:
        - Account Information and Schema
      summary: Retrieve account information
      description: >-
        Returns account information and transaction count between two dates
        (passed as a POST request).
      operationId: accountInformation
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                AccountInfoRequest:
                  $ref: '#/components/schemas/AccountInfoRequest'
            example:
              AccountInfoRequest:
                startDate: '2026-01-01'
                endDate: '2026-03-24'
          application/xml:
            schema:
              type: object
              properties:
                AccountInfoRequest:
                  $ref: '#/components/schemas/AccountInfoRequest'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountInfoResponse'
              example:
                AccountInfoResponse:
                  productName: 'STE : STE Hosted Service'
                  customerName: Example Company Inc
                  expirationDate: '2031-01-01T00:00:00Z'
                  steCalculations: 123456
                  transactionStamp:
                    calcDateTime: '2026-03-24T13:32:44Z'
                    steVersion: 2026-R1
                    schemaVersion: v1
                    totalTransactions: 1
                    failedTransactions: 0
                    transactionType: AccountInfo
                  errorStatus:
                    errorCode: 0
                    errorMessage: No Error
            application/xml:
              schema:
                $ref: '#/components/schemas/AccountInfoResponse'
components:
  schemas:
    AccountInfoRequest:
      type: object
      properties:
        endDate:
          $ref: '#/components/schemas/date'
        startDate:
          $ref: '#/components/schemas/date'
    AccountInfoResponse:
      type: object
      properties:
        customerName:
          type: string
        errorStatus:
          $ref: '#/components/schemas/errorType'
        expirationDate:
          $ref: '#/components/schemas/date'
        productName:
          type: string
        steCalculations:
          type: integer
        transactionStamp:
          $ref: '#/components/schemas/transactionStampType'
    date:
      type: string
    errorType:
      type: object
      properties:
        errorCode:
          type: integer
        errorMessage:
          type: string
    transactionStampType:
      type: object
      properties:
        calcDateTime:
          $ref: '#/components/schemas/dateTime'
        failedTransactions:
          type: integer
        schemaVersion:
          type: string
        steVersion:
          type: string
        totalTransactions:
          type: integer
        transactionType:
          type: string
          enum:
            - PayCalc
            - LocationCode
            - JurisdictionData
            - SetTaxList
            - BenefitStatus
            - BenefitInfo
            - TaxIDList
            - GrossUp
            - GetSchema
            - AccountInfo
            - STEVersions
    dateTime:
      type: string
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        API key for authentication. Provide the raw key as the value of the
        Authorization header (no "Bearer" prefix).

````