> For the complete documentation index, see [llms.txt](https://6dot50.gitbook.io/6dot50-apis/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://6dot50.gitbook.io/6dot50-apis/pay-api/payments.md).

# Payments

Individual Payment instructions are added to a Batch.&#x20;

Similar to Batches, Payments also have status codes:

### Payment Status Codes

Every Payment has a Status. Based on a Payment's status, certain operations can be performed against the Payment:

| Payment Status Code | Description                                                                                                                                                                                                                                     | Allowed Operations                                                                                                                                                  |
| ------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| DRAFT               | When a new Payment is created, it is created in a DRAFT status.                                                                                                                                                                                 | Can use [`DELETE /payments/{id}`](/6dot50-apis/pay-api/payments/delete-payments-id.md) to cancel an individual payment in a Batch. The batch will also be in DRAFT. |
| PENDING             | <p>The Payment is pending payment to a non-6DOT50 member. <br><br>Payment will become SETTLED once they join <strong>or</strong> CANCELLED if they do not join within the Payment Reversal window.</p>                                          | None                                                                                                                                                                |
| CANCELLED           | Payment was cancelled by using a [`POST /batch/{id}/cancel`](/6dot50-apis/pay-api/batches/post-batches-id-cancel.md) operation **or** was automatically cancelled if a non-Member did not claim the Payment within the Payment Reversal window. | None                                                                                                                                                                |
| SETTLED             | Payment was successfully made to the user.                                                                                                                                                                                                      | None                                                                                                                                                                |
| DELETED             | Payment was deleted using the [`DELETE /payments/{id}`](/6dot50-apis/pay-api/payments/delete-payments-id.md) operation.                                                                                                                         | None                                                                                                                                                                |
