Retrieve Invoice Types

GET https://api.beelpoint.com/v1/api/invoices/types

Headers

Name
Type
Description

authorization*

String

API Secret Key

Request Body

Field
Type
Description

success*

Boolean

Indicates if the request was successful

invoiceTypes*

Array

List of available invoice types

code*

String

The code of the invoice type

value*

String

The name/description of the invoice type

{
  "success": true,
  "invoiceTypes": [
    { "code": "380", "value": "Credit Note" },
    { "code": "381", "value": "Commercial Invoice" },
    { "code": "384", "value": "Debit Note" },
    { "code": "385", "value": "Self Billed Invoice" },
    //... other invoice types
  ]
}
{
  "success": false,
  "statusCode": 404,
  "message": "You have attempted to get a resource that does not exist.",
  "name": "ResourceNotFoundError",
  "data": {}
}

Last updated