Skip to main content
POST
/
projects
Create project
curl --request POST \
  --url https://api.pickfu.com/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "goal": "<string>",
    "archived": true,
    "bookmarked": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "url": "<string>",
    "user": "<string>",
    "surveys": [
      {
        "guid": "<string>",
        "question": "<string>",
        "type": "<string>",
        "state": "<string>",
        "respondentsAmount": 123
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

OAuth2 access token obtained via the authorization flow. Include in the Authorization header as: Bearer {access_token}

Body

application/json
name
string

Project name

Maximum string length: 255
description
string

Project description

Maximum string length: 5000

Response

201 - application/json

Default Response

success
boolean
data
object