Get the welcome widget tasks for the authenticated user

GET /api/v1/my/welcome-widget-tasks

Only available to Plannr's front-end.

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • id string

      The ID of the welcome widget item.

    • title string

      The title of the welcome widget item.

    • description string

      The description of the welcome widget item.

    • type string

      The type of welcome widget item. Available values: video and document

    • resource_url string

      The URL of the resource depending on the type.

    • is_complete boolean

      Denotes if the welcome widget task has been completed by the authenticated user.

GET /api/v1/my/welcome-widget-tasks
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/my/welcome-widget-tasks' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id": "branding",
  "type": "video",
  "title": "Personalise your branding",
  "description": "Let's make Plannr look like the rest of your company",
  "is_complete": false,
  "resource_url": "https://www.youtube.com/embed/7siXdMId640"
}