POST

Fee Item Bundle - 03.Read by Parameters

Return all fee items bundle availables.

Important

Calls to this method must include the cookie .LawPanel.AuthCookie in order to identify you at user level. For more details about authentication please check this link. To obtain the cookie you can use the method Login.

Request URL

Request headers

string

User authentication cookie. Read more about how to you get it from here.

string
Subscription key which provides access to this API.

Request body

  • string Requerid public_name: The public name of fee item bundle. To get details of fee item bundle please check this link.
  • array Requerid param_and_values: An array object with properties.
    Object properties are:
    • string name: The public name of a parameter. To get details please check this link
    • string value: The name of an item in the product_modifier_definitions list. To get details please check this link

Loading...
                  {
  "type": "object",
  "properties": {
    "public_name": {
      "type": "string"
    },
    "param_and_values": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "required": [
          "name",
          "value"
        ]
      }
    }
  },
  "example": {
    "public_name": "Usa",
    "param_and_values": [
      {
        "name": "Registers",
        "value": "uspto"
      },
      {
        "name": "N° Classes",
        "value": "1"
      }
    ]
  }
}
                  
              

Response 200

Return list of parameters availables.

  • string id: The product ID. To get details of product please check this link.
  • string code: The code of product.
  • string name: The internal name of product.
  • string name_public: The public name of product.
  • object product_type: An object with product type properties.
    Object properties are:
    • string id: The product type ID.
    • string name: The name of product type.
  • array prices: An object with prices properties.
    Object properties are:
    • string id: The price ID.
    • string date_time: The date it was created.
    • object currency: An object with currency properties.
      Object properties are:
      • string id: The currency ID.
      • string name: The name of currency.
      • string name_short: The short version name of currency.
      • string symbol: The character that represents the currency symbol.
    • number currency_units: The amount.
  • array taxes: An object with tax properties.
    Object properties are:
    • string id: The tax ID. To get details of tax please check this link.
    • string name: The name of tax.
    • string description: The description of tax.
    • number units: The units of tax.
    • number percent: The percent of tax.

Loading...
* See getting started for more information on how to use this API. You can also check the API change history.