Delete Market
Delete a market (soft delete).
Endpoint: DELETE /api/v1/integration/markets/{id}
Authentication: Required (Bearer token)
Required Headers:
Authorization: Bearer <access_token>
X-Target-Server: integration
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string (UUID) | Yes | Market ID |
Response
Status: 204 No Content
No response body is returned.
Example cURL Request
curl -X DELETE https://<base-url>/api/v1/integration/markets/550e8400-e29b-41d4-a716-446655440000 \
-H "Authorization: Bearer <access_token>" \
-H "X-Target-Server: integration"