# POST /v4/config/store

_Merkl API_

Stores campaign configurations keyed by their hash. Provide the campaign configuration payload in the request body.

## Request body

**`application/json`**
```json
{}
```
**`application/x-www-form-urlencoded`**
```json
{}
```
**`multipart/form-data`**
```json
{}
```

## Responses

- **200** Response for status 200

## Example request

```bash
curl -X POST "https://api.merkl.xyz//v4/config/store" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ ... }'
```