> For the complete documentation index, see [llms.txt](https://payu-docs.gitbook.io/payouts-integration/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://payu-docs.gitbook.io/payouts-integration/smart-send/smart-send-v2-api/smart-send-status-1.md).

# Smart Send Status

API for fetching the status of a particular smart send link created using link Id.

{% tabs %}
{% tab title="Production" %}
<https://payout.payumoney.com/payout/v2/smartSend/status?linkId=anJFU9vrS0pqXXLOva96oBx5NkYhRLwiSahksBJbQXrTwluheEAa4oTOKsLMCoNg>
{% endtab %}

{% tab title="Testing" %}
<https://test.payumoney.com/payout/v2/smartSend/status?linkId=anJFU9vrS0pqXXLOva96oBx5NkYhRLwiSahksBJbQXrTwluheEAa4oTOKsLMCoNg>
{% endtab %}
{% endtabs %}

## Path Parameter

| Key    | **Description**    | Data Type | Mandatory | Possible Value |
| ------ | ------------------ | --------- | --------- | -------------- |
| linkId | Smart Send link id | String    | Yes       |                |

**Example**

Content-Type : application/json

Method: POST

**Curl:**

```
curl --location --request GET 'https://payumoney.com/payout/v2/smartSend/status?linkId=anJFU9vrS0pqXXLOva96oBx5NkYhRLwiSahksBJbQXrTwluheEAa4oTOKsLMCoNg'
```

Response:

```
{
    "status": 1,
    "msg": "SmartPay Link cancelled",
    "code": 1122,
    "data": null
}
```

## Smart Send Statuses **and their meanings**

**PENDING** -> Smart Send Link Created Successfully but yet to be filled details by customer.&#x20;

**INITIATED** -> Payment Initiated, wait for sometime for payment to be competed.&#x20;

**FAILED** -> Smart Send Payment failed, Can be reinitiated after sometime.&#x20;

**SUCCESS** -> Payout is initiated, wait for sometime for the payout to be completed.&#x20;

**REJECTED** -> Smart Send approval rejected, check with the approver.&#x20;

**EXPIRED** -> Smart send link expired, create a new link.&#x20;

**CANCELLED** -> Smart Send Link cancelled by the merchant, create a new link.&#x20;

**APPROVAL\_PENDING** -> Link Approval is pending, contact your approver.&#x20;

**APPROVED** -> Link is approved by the approver.
