# Create a return

To [create](https://docs.commercelayer.io/core/creating-resources) a new return, send a `POST` request to the `/api/returns` endpoint, passing the resource arguments in the request body.

## Request

**POST** <https://yourdomain.commercelayer.io/api/returns>

### Arguments

| Body Parameter                       | Type     | Required |
| ------------------------------------ | -------- | -------- |
| **type**                             | `string` | Required |
| attributes.**reference**             | `string` | Optional |
| attributes.**reference\_origin**     | `string` | Optional |
| attributes.**metadata**              | `object` | Optional |
| relationships.**order**              | `object` | Required |
| relationships.**stock\_location**    | `object` | Optional |
| relationships.**reference\_capture** | `object` | Optional |
| relationships.**tags**               | `array`  | Optional |

### Example

{% tabs %}
{% tab title="Request" %}
The following request creates a new return:

```shell
curl -g -X POST \
  'https://yourdomain.commercelayer.io/api/returns' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token' \
  -H 'Content-Type: application/vnd.api+json' \
  -d '{
  "data": {
    "type": "returns",
    "relationships": {
      "order": {
        "data": {
          "type": "orders",
          "id": "ABCRtyUpBa"
        }
      }
    }
  }
}'
```

{% endtab %}

{% tab title="Response" %}
On success, the API responds with a `201 Created` status code, returning the created resource object:

```json
{
  "data": {
    "id": "XAyRWNUzyN",
    "type": "returns",
    "links": {
      "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN"
    },
    "attributes": {
      "number": "#1234/R/001",
      "status": "draft",
      "customer_email": "john@example.com",
      "skus_count": 2,
      "approved_at": "2018-01-01T12:00:00.000Z",
      "cancelled_at": "2018-01-01T12:00:00.000Z",
      "shipped_at": "2018-01-01T12:00:00.000Z",
      "rejected_at": "2018-01-01T12:00:00.000Z",
      "received_at": "2018-01-01T12:00:00.000Z",
      "refunded_at": "2018-01-01T12:00:00.000Z",
      "archived_at": "2018-01-01T12:00:00.000Z",
      "estimated_refund_amount_cents": 500,
      "estimated_refund_amount_float": 5.0,
      "formatted_estimated_refund_amount": "€5,00",
      "created_at": "2018-01-01T12:00:00.000Z",
      "updated_at": "2018-01-01T12:00:00.000Z",
      "reference": "ANY-EXTERNAL-REFEFERNCE",
      "reference_origin": "ANY-EXTERNAL-REFEFERNCE-ORIGIN",
      "metadata": {
        "foo": "bar"
      }
    },
    "relationships": {
      "order": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/order",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/order"
        }
      },
      "customer": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/customer",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/customer"
        }
      },
      "stock_location": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/stock_location",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/stock_location"
        }
      },
      "origin_address": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/origin_address",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/origin_address"
        }
      },
      "destination_address": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/destination_address",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/destination_address"
        }
      },
      "reference_capture": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/reference_capture",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/reference_capture"
        }
      },
      "reference_refund": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/reference_refund",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/reference_refund"
        }
      },
      "return_line_items": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/return_line_items",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/return_line_items"
        }
      },
      "attachments": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/attachments",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/attachments"
        }
      },
      "resource_errors": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/resource_errors",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/resource_errors"
        }
      },
      "events": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/events",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/events"
        }
      },
      "tags": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/tags",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/tags"
        }
      },
      "versions": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/versions",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/versions"
        }
      },
      "event_stores": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/relationships/event_stores",
          "related": "https://yourdomain.commercelayer.io/api/returns/XAyRWNUzyN/event_stores"
        }
      }
    },
    "meta": {
      "mode": "test",
      "organization_id": "xRRkjDFafe",
      "trace_id": "69abaa3545913c78132e5578bd26208d44aa9043647d78698fd0021f3958cd74"
    }
  }
}
```

{% endtab %}
{% endtabs %}
