Product

The following is an API endpoint to get information about our Products.

Used to get list of our products.

Headers

  • Name
    Authorization
    Type
    uuid
    Description

    API Key (provided by BANGJEFF or retrieve from our Reseller Portal).

  • Name
    Content-Type
    Type
    application/json
    Description

    Content type application/json

Request

Example

POST
/api/v3/product
curl -X POST "https://sandbox-api.bangjeff.com/api/v3/product" \
  -H "Authorization: {{api_key}}" \
  -H "Content-Type: application/json"

Response

Example

{
  "error": false,
  "code": 200,
  "message": "string",
  "data": [
    {
      "code": "string",
      "name": "string",
      "isActive": false,
      "inputs": [
        {
          "name": "string",
          "type": "string",
          "title": "string",
          "options": [
            {
              "title": "string",
              "value": "string"
            }
          ]
        }
      ]
    }
  ]
}