Skip to content
Feedback Posts

Assign a post

Understanding how to use FeatureOS API to build custom integrations.

Introduction

The FeatureOS assign post API allows you to assign a post to a user in your organization.

POST https://api.featureos.app/api/v3/feature_requests/:id/assign
curl -X POST '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.

Body Parameters

Parameter Format Description
email String The email address of the user to assign the post to.

Sample request

curl -X POST "https://api.featureos.app/api/v3/feature_requests/:feature_request_id/assign" \
  -H "API-KEY: YOUR_API_KEY" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"email": "[email protected]"}'

Sample response