# Subscription-LastPayment

**id**Payment-Id

Unique identifier for the payment.

**Example:<!-- -->&#x20;**`af6029f80f5fc73a8ad2753eea0b1be0`

**status**Payment-Status

The status of the payment.

| Enum Value          | Description                                                                   |
| ------------------- | ----------------------------------------------------------------------------- |
| SUCCEEDED           | The payment has been successfully processed and funds have been captured      |
| PENDING             | The payment is being processed and awaiting completion                        |
| FAILED              | The payment attempt was unsuccessful                                          |
| CANCELED            | The payment was canceled before completion                                    |
| REFUNDED            | The full payment amount has been refunded                                     |
| PARTIALLY\_REFUNDED | Only a portion of the payment amount has been refunded                        |
| AUTHORIZED          | The payment has been authorized but funds have not been captured yet          |
| EXPIRED             | The payment has expired without being completed                               |
| PENDING\_PROCESSING | The payment was submitted to the processor and is awaiting an acknowledgement |
| PAID\_OUT           | Funds for this payment have been settled to the merchant's bank account       |

**Possible values:** \[`SUCCEEDED`, `PENDING`, `FAILED`, `CANCELED`, `REFUNDED`, `PARTIALLY_REFUNDED`, `AUTHORIZED`, `EXPIRED`, `PENDING_PROCESSING`, `PAID_OUT`]

**Example:<!-- -->&#x20;**`PENDING`

**statusCode**Payment-StatusCode

Payment status code.

**Example:<!-- -->&#x20;**`E000`

**statusMessage**Payment-StatusMessage

Human readable status message, can be displayed to a user.

**Example:<!-- -->&#x20;**`Transaction approved`

Subscription-LastPayment

```
{

  "id": "af6029f80f5fc73a8ad2753eea0b1be0",

  "status": "PENDING",

  "statusCode": "E000",

  "statusMessage": "Transaction approved"

}
```
