Jump to Content
LiquidPlannerDocumentationEndpointsChangelogForum
HomeDocumentationEndpointsChangelogForum
DocumentationEndpointsChangelogForumLog InLiquidPlanner
Log In

Overview

  • Getting Started with the LiquidPlanner API
  • Authentication and Authorization
  • Data Formats
  • Hello World Example Request
  • Resource Tree Structure
  • Requests and Responses
  • Request Throttling
  • Versioning

Treeitems

  • Treeitem Data Model
  • Filtering Requests
  • Ordering and Limiting Requests
  • Moving and Packaging Items
  • Create and Update Examples

Resource Types

  • Full Endpoint Reference
  • Analytics Reports
  • Assignments
  • Checklist Items
  • Comments
  • Custom Fields
  • Documents
  • Members
  • Tags
  • Timers
  • Timesheet Entries
  • Timesheets
  • Todo Items
  • Treeitem Snapshots

Convenience Methods

  • Estimates and Time Tracking
  • Workspace Comment Stream
  • Upcoming Tasks
  • Workspace Changes

Webhooks

  • Configuring and using webhooks

Sample Code

  • LiquidPlanner API Examples
  • Salesforce Integration
  • Subversion Integration

External Links

  • Resource URLs (generated)
  • Resource Types (generated)
  • LiquidPlanner Help Center
Powered by 

Custom Fields

Suggest Edits

Listing All Custom Field Names

You can fetch a list of all custom field names using the custom_fields method on workspaces.

% curl https://app.liquidplanner.com/api/v1/workspaces/:id/custom_fields
[
   {
        "category": "project",
        "name": "Kick-off Date",
        "type": "DateCustomField",
        "id": 1234
    },
    {
        "category": "task",
        "name": "Ticket Number",
        "type": "NumberCustomField",
        "id": 5678
    }
]

Updated over 4 years ago


  • Table of Contents
    • Listing All Custom Field Names