HomeGuidesDeveloper HubRelease Notes
Get supportBook a chat
Developer Hub
These docs are for v2.114. Click to read the latest docs for v2.208.

HTTP Methods

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 type

Fielo 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.