Account Info Endpoint

Retrieve transaction data

/accountInfo endpoint

The /prp/v1/accountInfo endpoint returns account information and usage data within a specified date range.

🚧

Please note the transactions returned from this endpoint represent the total number of API requests to the Payroll Point endpoints. Billable usage can vary. Clients should connect with your Symmetry Account Executive if you have any questions.

Sample Request

  curl --location --request GET 'https://api.symmetry.com/prp/v1/accountInfo?startDate=2021-08-01&endDate=2022-12-31'
  \
  --header 'Authorization: y0urAPI-KeyG0esH3re'

In this example, parameters (YYYY-MM-DD format) are set to the following:

  • startDate: 2021-08-01
  • endDate: 2022-12-31

Sample Response

  {
     "productName": "PRP : PRP Hosted Service",
     "customerName": "Symmetry Software",
     "expirationDate": "2022-04-08T00:00:00.000+0000",
     "transactions": 1155
  }

Jump to top