Skip to main content
POST
https://api.laneapp.co/api
/
records
/
idea
Create idea or feedback
curl --request POST \
  --url https://api.laneapp.co/api/records/idea \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "record_title": "Bulk export to CSV",
  "record_description": "<p>Users want to export filtered lists to CSV.</p>",
  "type": "Idea",
  "product": "65f0a1b2c3d4e5f6a7b8c9d0",
  "assignee": "65f0a1b2c3d4e5f6a7b8c9d1",
  "tags": [
    "65f0a1b2c3d4e5f6a7b8c9d2"
  ],
  "source": "Zapier"
}
'
{
  "id": "<string>",
  "title": "<string>",
  "description": "<string>",
  "status": "<string>",
  "assignee": "<string>",
  "product": "<string>",
  "tags": [
    "<string>"
  ],
  "health": "<string>",
  "accounts": [
    "<string>"
  ],
  "release": "<string>",
  "timeFrame": "<string>",
  "source": "<string>",
  "importance": 123,
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.laneapp.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Pass your Lane API key in the X-API-Key header.

Body

application/json
record_title
string
required

Title of the idea or feedback. Required.

record_description
string

HTML or plain text body. HTML is sanitized server-side.

type
enum<string>
default:Idea
Available options:
Idea,
Feedback
product
string

Product ObjectId from GET /records/product.

assignee
string

User ObjectId from GET /records/users.

tags
string[]

Tag ObjectIds from GET /records/tags.

source
string
default:Manual

Where the record originated. Use Zapier for Zapier-created records.

Example:

"Zapier"

Response

Created.

id
string

MongoDB ObjectId.

title
string
description
string

Plain text — any HTML in the source is stripped before being returned.

status
string
Example:

"Triage"

assignee
string | null

Assignee's display name (not their ObjectId).

product
string | null

Product label.

tags
string[]

Array of tag labels.

health
string | null
accounts
string[]

Account names. Present only on Idea and Feedback records.

release
string | null

Release label. Present only on Feature records.

timeFrame
string | null

Timeframe label. Present only on Objective records.

type
enum<string>
Available options:
Idea,
Feedback,
Feature,
Objective
source
string
importance
integer
createdAt
string<date-time>
updatedAt
string<date-time>