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

Reversals

An authorization reversal releases the hold that an authorization placed on a customer’s payment method funds.

POST /v1/payments/:id/reversal

curl –X POST 'https://api.firstoken.co/v1/payments/:id/reversal' \
--header 'Content-Type: application/json' \
--header 'x-api-key: YOUR API KEY' \
--data '{
    "transaction_info": {
        "type": "authorization_reversal",
        "reference_code": "123456789"
    },
    "reversal_info": {
        "amount_details": {
            "total_amount": 1000
        }
    },
    "device_info": {
        "ip_address": "12.7.8.120"
    }
}'

id: string

A valid payment Transaction ID

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

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

data: {object} The value of the data represents a set of JSON objects with the transaction’s details:

  • transaction_info: {object} The wrapper object of the transaction’s information. Contains:

    • type: string The type of transaction response.

    • reference_code: string

      A reference code for the transaction.

    • transaction_id: string

      Our transaction identifier of the request. It is used in other requests.

    • request_id: string

      The identifier of the request associated with the transaction.

    • status: string

      The status received of the transaction.

    • created_at: ISO Date

      The ISO Date of the request.

Example of the JSON response
{
    "status": "success",
    "message": "Authorization reversal successfull",
    "data": {
        "transaction_info": {
            "type": "authorization_reversal_response",
            "reference_code": "123456789",
            "transaction_id": "0001708979971435543349",
            "request_id": "7089799728616517004951",
            "status": "Reversed",
            "created_at": "2024-02-26T20:39:33Z"
        }
    }
}
PreviousAuthorizationsNextCapture

Last updated 1 year ago

Was this helpful?

⚙️