Fielo PLT REST API supports four HTTP methods for interacting with resources:
- GET
GET method retrieves information. GET requests only read data, but they do not update or change data as they are safe and idempotent. - POST
POST requests create new resources and new information is sent.
Warning!POST method is not safe, so you should use it for non-idempotent requests.
- PATCH
PATCH method modifies a resource. PATCH requests only need the changes to a resource. - DELETE
Make a DELETE request to remove a resource.
Content typeFielo PLT REST API only supports JSON. POST and PATCH methods require a valid JSON object for the message body, instead of XML or other formats.
