# Unreferenced Refund

Ability to issue refunds independently of a specific transaction. Useful in scenarios where the original transaction cannot be directly referenced, such as when the original purchase record is no longer available and other unique refund situations.

To create an unreferenced refund, make an api call to the /authorization endpoint with an Authorization creatable as body. The category property needs to be set to "unref-refund".

 













POST /authorization
{
  "number": "<psp-id>"
  "amount": 23.41,
  "currency": "EUR",
  "card": {
    "pan": "4111111111111111", 
    "expires": [2, 24],
    "csc": "987"
  },
  "target": "<callback_url>" // Only if Intergiro 3ds service is used
  "category": "unref-refund"
}

If a verification required error is returned 3DS needs to be performed. See the Integration types tab for guides how to perform 3DS depending on your integration.

Response:

 












































HTTP 201 

{
  "id": "<intergiro_tx_id>",
  "merchant": "<merchant_id>",
  "number": "<psp-id>"
  "created": "2021-04-01T09:00:00.000Z",
  "amount": 23.41,
  "currency": "EUR",
  "card": {
    "csc": "matched",
    "expires": [2, 24],
    "iin": "411111",
    "last4": "1111",
    "scheme": "visa",
    "type": "debit",
  },
  "history": [
    {
        "merchant": "QHGowias",
        "type": "refund",
        "date": "2023-05-11T12:46:16.325Z",
        "number": "100128006A1320144480",
        "currency": "SEK",
        "amount": 1.02,
        "status": "success",
        "reference": "act-36wH98hkBqHISeZ2ZejZ"
    }
  ],
  "capture": [],
  "refund": [
    {
        "amount" : 23.41,
        "created": "2021-04-01T09:00:00.000Z",
        "reference": "<processor-id>",
        "id": "<intergiro_refund_id>",
		"status": "approved",
    }
  ],
  "status": {
      "refunded": 23.41
  },
  "changed": "2023-02-20T12:25:02.134Z"
}