# Scenario 3

<mark style="color:green;">`POST`</mark> `https://seerbitapi.com/api/v2/payments/initiates`

**Scenario 3**

1. The customers gets prompted to enter card pin

{% tabs %}
{% tab title="cURL" %}

```javascript
curl --location 'https://seerbitapi.com/api/v2/payments/initiates' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_ENCRYPTION_KEY' \
--data '{
	"transaction":
		{
		 "linkingreference":"F468778061587905955047",
         "otp":"496865"
         }
}'
```

{% endtab %}

{% tab title="Response" %}

```javascript
{
    "status": "SUCCESS",
    "data": {
	"code": "00",
	"payments": {
	    "paymentReference": "92SQ2A3BCDE42RFR2AS122221",
	    "linkingReference": "F611305721592735518716"
	},
	"message": "Successful"
    }
}
```

{% endtab %}
{% endtabs %}
