fdback.iofdback.io

Get workspace

Retrieve information about the workspace associated with the API key.

GET
/workspace

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/workspace"
{
  "data": {
    "id": "string",
    "name": "string",
    "slug": "string",
    "isPublic": true,
    "logoUrl": "string",
    "createdAt": "2019-08-24T14:15:22Z"
  }
}
{
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid API key.",
    "status": 401
  }
}
{
  "error": {
    "code": "RATE_LIMITED",
    "message": "Too many requests. Please try again later.",
    "status": 429
  }
}