# Content | Stage

There are two ways to create a stage and assign it to a guidebook. A stage can only exist inside a guidebook.

Assign to guidebook with

**a)** The GUIBO Guidebook Link inside the request body in attribute "bundle" or

**b)** The custom ID of the guidebook  as request parameter, together with the account ID . You can then leave the guidebook ID in the request body empty.

* You can find the Account ID under Account Settings > General Settings > Account ID
* You can find the API key under Account Settings > General Settings > API Key

## Body

```json
curl --location -X POST 'https://services.schneidergeo.com/content/category' \
--header 'Authorization: xxxx-xxxxxx-xxxxx-xxxxxx' \
--header 'Content-Type: application/json' \
--data '{   
    "bundle":"XUwfwA",
    "names": {
        "de":"Day 14",
        "en":"Day 14"
    },
    "sorting":2

}'
```

#### Query Parameters

| Name           | Type   | Description |
| -------------- | ------ | ----------- |
| bundleCustomId | String |             |

#### Headers

| Name                                            | Type   | Description |
| ----------------------------------------------- | ------ | ----------- |
| Authorization<mark style="color:red;">\*</mark> | String | API key     |
