Unassign a post
Understanding how to use FeatureOS API to build custom integrations.
Introduction
The FeatureOS unassign post API allows you to remove the assignee from a post in your organization.
DELETE
https://api.featureos.app/api/v3/feature_requests/:id/assign
curl -X DELETE 'https://api.featureos.app/api/v3/feature_requests/:id/assign' \
-H 'API-KEY: YOUR_API_KEY' \
-H 'Content-Type: application/json'Headers
| Parameter | Default | Description |
|---|---|---|
| API-KEY | - | Generate from organization settings on the admin dashboard. |
| Authorization | - | Generate a unique JWT token that is specific to a user |
| Content-Type | application/json | Required for JSON request body. |
Sample request
curl -X DELETE "https://api.featureos.app/api/v3/feature_requests/:feature_request_id/assign" \
-H "API-KEY: YOUR_API_KEY" \
-H "Authorization: Bearer YOUR_JWT_TOKEN"