fdback.iofdback.io

List post types

Retrieve all available post types for the workspace (e.g. Bug, Feature Request, Improvement).

GET
/post-types

Authorization

bearerAuth
AuthorizationBearer <token>

API key with sk_live_ or sk_test_ prefix. Create keys in your workspace settings.

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://app.fdback.io/api/v1/post-types"
{
  "data": [
    {
      "id": "string",
      "name": "string",
      "slug": "string",
      "icon": "string"
    }
  ]
}
{
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid API key.",
    "status": 401
  }
}
{
  "error": {
    "code": "RATE_LIMITED",
    "message": "Too many requests. Please try again later.",
    "status": 429
  }
}