Firstoken API Docs
  • ⚙️API Reference
    • Firstoken API
      • Tokenization As A Service
        • Simple Tokenization
        • Simple Detokenization
        • Inspect Token
        • Delete Tokens
      • Transactions
        • Create a Transaction
        • Retrieve a Transaction
        • Inspect a Transaction
        • Delete a Transaction
        • Tokenize a Transaction
      • Proxy
        • Allowed Headers
        • Actions
        • Methods
          • POST - Proxy
          • GET - Proxy
          • PUT - Proxy
          • PATCH - Proxy
          • DELETE - Proxy
        • Get Payload Hash
        • Proxy JOSE
        • Proxy WSSEC
      • Inbound Routes
        • Create an Inbound - POST
      • Payments
        • Attributes of the Request
        • Common response
        • Endpoints
          • Authorizations
          • Reversals
          • Capture
            • Capture Refunds
            • Capture Void
          • Payments
            • Payment Refunds
            • Payment Void
          • Refunds void
          • Credit
            • Credit Void
          • Get Transaction Details
        • Decision Manager
          • How it works
          • Create decision
          • Update Decision
        • Risk Payer Authentication
          • How to use it
          • 3-D Secure Flows
            • Successful Frictionless Authentication
            • Unsuccessful Frictionless Authentication
            • Attempts Processing Frictionless Authentication
            • Unavailable Frictionless Authentication
            • Rejected Frictionless Authentication
            • Authentication not available on Lookup
            • Enrollment check error
            • Time-out
            • Bypassed Authentication
            • Successful Step-Up Authentication
            • Unsuccessful Step-Up Authentication
            • Unavailable Step-Up Authentication
            • Require Method URL
        • Point of Sale Payments
          • Authorization
          • Capture
          • Payment
          • Credit
  • 📖Guides
    • Firstoken Captures Hosted Iframe
      • How Firstoken Captures works
      • Generating a JSON Web Token
      • JSON form Schema
      • Iframe Communication
    • De-scoping Components
      • How Firstoken De-scoping Components works
      • Inbound Routes Module
        • Create an Inbound Route
        • Edit an Inbound Route
        • Delete an Inbound Route
      • Webhook Module
        • Create a Webhook
        • Edit a Webhook
        • Delete a Webhook
        • Webhook events
        • How to sign Webhooks data
      • Proxy Module
        • Create a Proxy
        • Edit a Proxy
        • Delete a Proxy
    • Firstoken Captures SDK JS
      • Getting Started
      • Functions
      • Type of Elements
      • Elements Options
      • CSS Object
      • Full Example of Usage
      • SDK versions
Powered by GitBook
On this page
  • Supported Hash Types:
  • Important Note for HMAC Hash Types:

Was this helpful?

  1. API Reference
  2. Firstoken API
  3. Proxy

Get Payload Hash

This method retrieves the calculated hash of a payload using various supported hashing algorithms. The client must specify the desired hash type through the type query string parameter.

Supported Hash Types:

  • SHA256

  • SHA384

  • SHA512

  • HMACMD5

  • HMACSHA1

  • HMACSHA256

  • HMACSHA384

  • HMACSHA512

POST /
curl -X POST 'https://api.firstoken.co/proxy/hash/?type=SHA256' \
--header 'ft-access-key : YOUR_ACCESS_KEY' \
--data-raw '{
    "chd": {
        "holder": "{{4242428XsEs24242:detokenize | extract:name}}",
        "number": "{{4242428XsEs24242:detokenize | extract:card}}",
        "csc": "{{4242428XsEs24242:detokenize | extract:card | encrypt}}",
        "holderToken": "Yuri",
        "bin": "401200",
        "numberToken": "{{4242428XsEs24242:detokenize | extract:token }}",
        "numberLength": 16,
        "cscToken": "737",
        "cscLength": 3,
        "expiration": {
            "month": "{{4242428XsEs24242:detokenize | extract:expiration | date:MM}}",
            "year": "{{4242428XsEs24242:detokenize | extract:expiration | date:YY}}"
        },
        "document": "",
        "token": null
}'
  • ft-access-key: string This is the authentication header for the request. Required: true

  • type: string Type of hash algorithms that you need to use

Important Note for HMAC Hash Types:

When using any HMAC hash type, the client must provide an additional HTTP header titled ft-hmackey. This header should contain the HMAC key in a base64 encoded format. Failure to supply this header, or providing an improperly formatted value, will result in a hashing error.

Please ensure that you use the correct hash type and appropriate encoding for the HMAC key to successfully generate the payload hash.

Example of Response
{
    "status": 200,
    "data": {
        "hashValue": "PZ6/iPaSDMbL7+uWUQwy6IFrI78tqfeXRngthxgboOA=",
        "hashType": "SHA256"
    }
}
PreviousDELETE - ProxyNextProxy JOSE

Last updated 6 months ago

Was this helpful?

⚙️