Transparent Authentication Guide

The transparent authentication method does not require an authentication header. Instead the authentication credentials (partnerId and partnerKey) are placed in the JSON objects that are POSTed to our endpoints.

Example:

curl 'https://cert-parser.decryptx.com/api/v1/partner/validate' \
    -X POST \
    --header 'Content-Type: application/json' \
    --header 'Accept: application/json' \
    -d '{
            "partnerId"  : "WATERFORD",
            "partnerKey" : "ef1ad938150fb15a1384b883a104ce70",
            "reference"  : "723f57e1-e9c8-48cb-81d9-547ad2b76435"
        }'