Back to index

FOREST CRM - XML Product API

This API provides access to user data in the ForestCRM system.

Request

The request format is:

https://app.forestcrm.hu/api/xml/<API KEY>/products

Request parameters:

id (optional):
exact internal id of the product to be returned. Only exact matches are returned.

If no parameters are supplied, all products for the tenant are returned.

Example

https://app.forestcrm.hu/api/xml/demo/products

Response

Response conforms the attached XSD.

Example

<products>
  <product id="873">
    <updated>2020-12-29T00:00:00+01:00</updated>
    <name>Innovation</name>
  </product>
  <product id="9971">
    <updated>2020-12-30T14:35:20+01:00</updated>
    <name>Plastic</name>
  </product>
</products>

Back to index