---
title: "Order still processing — Anis Developers"
description: "The order was accepted and has no outcome yet."
url: https://developers.anis.ly/errors/operation-processing/
language: en
---

> Every page of this documentation: https://developers.anis.ly/llms.txt

[Error codes](https://developers.anis.ly/errors.md) · Orders

# Order still processing

- **Code:** `operation_processing`
- **Status:** 202
- **If this was an order:** May still complete — resume with the same id
- **Send it again unchanged?** Yes — see What to do
- **.NET SDK:** `OrderProcessing (a result, not an exception)`

> **The order may still complete**
>
> Resume it with the **same** operation id and the same body. A new operation id can buy the cards a second time.

## What it means

The order was accepted and has no outcome yet.

## What to do

- Wait for the time in `Retry-After`, then send the SAME order again — same operation id, same body. That is what moves it forward.
- Reading the order’s status shows where it stands, but does not move it forward.
- Never place it again under a new id: that can buy the cards twice.

## Where you can meet it

- POST [Place an order](https://developers.anis.ly/reference/create-order.md) `/v1/wallets/{walletId}/orders`

## Example

The body of the refusal. Its `type` is the address of this page.

```
{
  "type": "https://developers.anis.ly/errors/operation-processing",
  "title": "Order still processing",
  "status": 202,
  "code": "operation_processing",
  "requestId": "01J9R2K8T4V6XQ0M3B7C5D9E1F"
}
```
