For the complete documentation index, see llms.txt. This page is also available as Markdown.

Authentication

This area has been prepared so you can access basic information about the security and authentication steps required before starting the integration.

When communicating with MorPOS APIs Authentication with the SHA256 algorithm is mandatory. By following the steps below, you can include the authentication mechanism in your integration.

Base URL PROD: https://sale-gateway.morpara.com
Base URL Sandbox: https://finagopay-pf-api-gateway.prp.morpara.com

1) Headers

MorPOS Merchant Panel > Key Management > Key Recognition by accessing the screen ClientId and ClientSecret obtain your information.

This information should be sent within the header information of all API calls you make.


2) Request Sign

In any API call, the sign parameter that must be sent together with the request body is mandatory.

The Sign value is generated as follows:

  • Fields in the Request body are taken

  • Instead of writing them one under another they are concatenated as a string

  • API Key is appended to the end

  • Encrypted with SHA256

  • Converted to Base64 format and converted to uppercase

  • This generated value sign is sent with the API request in the field

Last updated