# Transaction Status

Endpoint URI:

<mark style="color:green;">`POST`</mark> [`https://api.qosic.net/QosicBrigde/checkout/v1/status`](https://api.qosic.net/QosicBrigde/checkout/v1/status)

<table><thead><tr><th width="113">Element</th><th width="204">Type</th><th>Decription</th></tr></thead><tbody><tr><td>transref</td><td><mark style="color:orange;"><code>string:MANDATORY</code></mark></td><td>The transaction reference of the payment transaction</td></tr><tr><td>qoskey</td><td><mark style="color:orange;"><code>string:MANDATORY</code></mark></td><td>The Unique key generated id provided by Qos</td></tr></tbody></table>

{% tabs %}
{% tab title=" Request" %}
{% code title="Content-Type: application/json\[Basic Authentication  headers ]" lineNumbers="true" %}

```json5
 { 
     "qoskey" : "..",
     "transref" : ".."
 }
```

{% endcode %}
{% endtab %}

{% tab title="Success" %}
{% code overflow="wrap" lineNumbers="true" %}

```json
        {
            "responsecode": "00",
            "responsemsg": "SUCCESSFUL",
            "transref": "12345",
            "comment": ""
          }
```

{% endcode %}
{% endtab %}

{% tab title="Error" %}
{% code title="" overflow="wrap" lineNumbers="true" %}

```json
          {
                “responsecode”: “-2”,
                “responsemsg”: “INVALID qoskey ,
                “transref”: “12345”,
                “comment”: qoskey ID DOES NOT EXIST”
            }
```

{% endcode %}
{% endtab %}
{% endtabs %}
