Skip to main content

List tax profiles

GET 

/accounting/taxes/profiles

JSON-RPC

accounting.taxes.profiles.search

Request​

Bodyrequired

    limitinteger

    Number of rows to return (for pagination).

    Default value: 20
    offsetinteger

    Number of rows to skip (for pagination).

    Default value: 0
    orderstring[]

    List of columns to order results by.

    Possible values: [id, -id, name, -name, sort, -sort]

    Default value: []
    qstring

    Quick search (wildcards allowed).

    idinteger

    Tax profile ID.

    companies_idinteger[]

    Partition ID.

    statusstring

    Status.

    Possible values: [archive, active]

    typestring

    Type.

    Possible values: [suretax, compliance, internal, avalara]

Responses​

List of tax profile objects.

Schema
  • Array [
  • object
  • ]

Authorization: X-Api-Key

name: X-Api-Keytype: apiKeyin: headerdescription: Token for API access
curl -L 'https://docs.jerasoft.net/accounting/taxes/profiles' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-Api-Key: <X-Api-Key>'
Request Collapse all
Auth
Body required
{
  "limit": 20,
  "offset": 0,
  "order": [
    "id"
  ],
  "q": "string",
  "id": 0,
  "companies_id": [
    0
  ],
  "status": "archive",
  "type": "suretax"
}