Get a post status by ID
GET/v2/post_statuses/{id}
Retrieves a single post status by its unique identifier.
Returns the full post status object including name, color, type, and default flag.
Get a post status by ID
curl https://do.featurebase.app/v2/post_statuses/$ID \
-H "Authorization: Bearer $FEATUREBASE_API_KEY"{
"id": "507f1f77bcf86cd799439011",
"color": "Blue",
"isDefault": false,
"name": "In Progress",
"object": "post_status",
"type": "active"
}Returns Examples
{
"id": "507f1f77bcf86cd799439011",
"color": "Blue",
"isDefault": false,
"name": "In Progress",
"object": "post_status",
"type": "active"
}