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

Was this helpful?

  1. API Reference
  2. Firstoken API
  3. Payments
  4. Decision Manager

Update Decision

This request is used when a transaction is pending for a review, and the customer need to update the information to approve the transaction, it has the following attributes

transaction_info {object}

Required: true

Represents the information details of the request in a JSON object. The object has the following attributes:

  • type: string Type value represent the type of request that is sent.

    Example: “authorization”

    Required: true

action_info {object}

Required: true Represents the action information object, that has the attributes:

  • decision_id: string

    Example: “8475986574758978745”

    Required: true

    The unique identifier of the decision.

  • decision: string

    Example: “Accept”

    Required: true

    The decision value that will be updated.

  • comments: string

    Example: 01/27

    Required: false

    An additional comment if need it.number: int Represents a Luhm compliant credit card value. Example: "4242424242424242" Required: true

  • status: string The status is a string result that only has three possible values. "Success", "Fail" or “error”.

  • message: string The message value represents a short description about the status received.

  • data: {object} The data variable represents the information expected from the request made. This contains the payment information and the decision of the transaction

Example of the JSON response
{
  "status": "success",
  "message": "Action requested successfully",
  "data": {
    "transaction_info": {
      "type": "update_decision_response",
      "reference_code": "0e411e48-1bd8-40af-9300-bb7c508be9bd",
      "transaction_id": "0001711566910563474602",
      "request_id": "7115668389676468804951",
      "status": "Accepted",
      "created_at": "2024-03-27T19:15:12.082Z"
    }
  }
}
PreviousCreate decisionNextRisk Payer Authentication

Last updated 1 year ago

Was this helpful?

⚙️