# Create an adjustment

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

## Request

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

### Arguments

| Body Parameter                      | Type      | Required                    |
| ----------------------------------- | --------- | --------------------------- |
| **type**                            | `string`  | Required                    |
| attributes.**name**                 | `string`  | Required                    |
| attributes.**currency\_code**       | `string`  | Required                    |
| attributes.**amount\_cents**        | `integer` | Required                    |
| attributes.**distribute\_discount** | `boolean` | Optional, default is 'true' |
| attributes.**reference**            | `string`  | Optional                    |
| attributes.**reference\_origin**    | `string`  | Optional                    |
| attributes.**metadata**             | `object`  | Optional                    |

### Example

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

```shell
curl -g -X POST \
  'https://yourdomain.commercelayer.io/api/adjustments' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token' \
  -H 'Content-Type: application/vnd.api+json' \
  -d '{
  "data": {
    "type": "adjustments",
    "attributes": {
      "name": "Additional service",
      "currency_code": "EUR",
      "amount_cents": 1500
    }
  }
}'
```

{% 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": "adjustments",
    "links": {
      "self": "https://yourdomain.commercelayer.io/api/adjustments/XAyRWNUzyN"
    },
    "attributes": {
      "name": "Additional service",
      "currency_code": "EUR",
      "amount_cents": 1500,
      "amount_float": 15.0,
      "formatted_amount": "€15,00",
      "distribute_discount": true,
      "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": {
      "versions": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/adjustments/XAyRWNUzyN/relationships/versions",
          "related": "https://yourdomain.commercelayer.io/api/adjustments/XAyRWNUzyN/versions"
        }
      },
      "event_stores": {
        "links": {
          "self": "https://yourdomain.commercelayer.io/api/adjustments/XAyRWNUzyN/relationships/event_stores",
          "related": "https://yourdomain.commercelayer.io/api/adjustments/XAyRWNUzyN/event_stores"
        }
      }
    },
    "meta": {
      "mode": "test",
      "organization_id": "xRRkjDFafe",
      "trace_id": "69abaa3545913c78132e5578bd26208d44aa9043647d78698fd0021f3958cd74"
    }
  }
}
```

{% endtab %}
{% endtabs %}
