ByteChef LogoByteChef
Components

Productboard

Productboard is a product management platform that helps teams prioritize features, gather customer feedback, and align their product strategy to deliver better products.

Categories: Project Management

Type: productboard/v1


Connections

Version: 1

Bearer Token

Properties

NameLabelTypeDescriptionRequired
tokenTokenSTRINGtrue

Actions

Get feature

Name: getFeature

Returns detail of a specific feature.

Properties

NameLabelTypeDescriptionRequired
X-VersionX - VersionINTEGERtrue
idIdSTRINGID of the featuretrue

Example JSON Structure

{
  "label" : "Get feature",
  "name" : "getFeature",
  "parameters" : {
    "X-Version" : 1,
    "id" : ""
  },
  "type" : "productboard/v1/getFeature"
}

Output

Type: OBJECT

Properties

NameTypeDescription
dataOBJECT
Properties {STRING(id), STRING(name), STRING(description), STRING(type), {STRING(id), STRING(name)}(status), {{STRING(id), {STRING(self)}(links)}(component)}(parent), {STRING(self), STRING(html)}(links), BOOLEAN(archived), {STRING(startDate), STRING(endDate), STRING(granularity)}(timeframe), {STRING(email), STRING(name)}(owner), DATE_TIME(createdAt), DATE_TIME(updatedAt), DATE_TIME(lastHealthUpdate)}

Output Example

{
  "data" : {
    "id" : "",
    "name" : "",
    "description" : "",
    "type" : "",
    "status" : {
      "id" : "",
      "name" : ""
    },
    "parent" : {
      "component" : {
        "id" : "",
        "links" : {
          "self" : ""
        }
      }
    },
    "links" : {
      "self" : "",
      "html" : ""
    },
    "archived" : false,
    "timeframe" : {
      "startDate" : "",
      "endDate" : "",
      "granularity" : ""
    },
    "owner" : {
      "email" : "",
      "name" : ""
    },
    "createdAt" : "2021-01-01T00:00:00",
    "updatedAt" : "2021-01-01T00:00:00",
    "lastHealthUpdate" : "2021-01-01T00:00:00"
  }
}

List All Notes

Name: listNotes

Returns detail of all notes order by created_at desc

Properties

NameLabelTypeDescriptionRequired
X-VersionX - VersionINTEGERtrue

Example JSON Structure

{
  "label" : "List All Notes",
  "name" : "listNotes",
  "parameters" : {
    "X-Version" : 1
  },
  "type" : "productboard/v1/listNotes"
}

Output

Type: OBJECT

Properties

NameTypeDescription
dataARRAY
Items [{STRING(id), STRING(title), STRING(content), STRING(displayUrl), STRING(externalDisplayUrl), {STRING(id)}(company), {STRING(id)}(user), {STRING(email), STRING(name)}(owner), [{STRING(memberId), STRING(memberName), STRING(memberEmail), STRING(teamId), STRING(teamName)}](followers), STRING(state), {STRING(origin), STRING(record_id)}(source), STRING(tags), [{STRING(id), STRING(type), INTEGER(importance)}](features), DATE_TIME(createdAt), DATE_TIME(updatedAt), {STRING(email), STRING(name), STRING(uuid)}(createdBy)}]
pageCursorSTRINGUse this pageCursor returned by search results to get next page of results. GET /notes?pageCursor={pageCursor}
totalResultsINTEGERTotal number of notes that meet the specified parameters for the query

Output Example

{
  "data" : [ {
    "id" : "",
    "title" : "",
    "content" : "",
    "displayUrl" : "",
    "externalDisplayUrl" : "",
    "company" : {
      "id" : ""
    },
    "user" : {
      "id" : ""
    },
    "owner" : {
      "email" : "",
      "name" : ""
    },
    "followers" : [ {
      "memberId" : "",
      "memberName" : "",
      "memberEmail" : "",
      "teamId" : "",
      "teamName" : ""
    } ],
    "state" : "",
    "source" : {
      "origin" : "",
      "record_id" : ""
    },
    "tags" : "",
    "features" : [ {
      "id" : "",
      "type" : "",
      "importance" : 1
    } ],
    "createdAt" : "2021-01-01T00:00:00",
    "updatedAt" : "2021-01-01T00:00:00",
    "createdBy" : {
      "email" : "",
      "name" : "",
      "uuid" : ""
    }
  } ],
  "pageCursor" : "",
  "totalResults" : 1
}

Create Note

Name: createNote

Creates a new note.

Properties

NameLabelTypeDescriptionRequired
X-VersionX - VersionINTEGERtrue
titleTitleSTRINGTitle of note.true
contentContentSTRINGHTML-encoded rich text supported by certain tags; unsupported tags will be stripped out.true

Example JSON Structure

{
  "label" : "Create Note",
  "name" : "createNote",
  "parameters" : {
    "X-Version" : 1,
    "title" : "",
    "content" : ""
  },
  "type" : "productboard/v1/createNote"
}

Output

Type: OBJECT

Properties

NameTypeDescription
linksOBJECT
Properties {STRING(html)}
dataOBJECT
Properties {STRING(id)}

Output Example

{
  "links" : {
    "html" : ""
  },
  "data" : {
    "id" : ""
  }
}

Delete Note

Name: deleteNote

Deletes a note.

Properties

NameLabelTypeDescriptionRequired
X-VersionX - VersionINTEGERtrue
noteIdNote IDSTRINGID of the notetrue

Example JSON Structure

{
  "label" : "Delete Note",
  "name" : "deleteNote",
  "parameters" : {
    "X-Version" : 1,
    "noteId" : ""
  },
  "type" : "productboard/v1/deleteNote"
}

Output

This action does not produce any output.

Get Note

Name: getNote

Returns detail of a specific note.

Properties

NameLabelTypeDescriptionRequired
X-VersionX - VersionINTEGERtrue
noteIdNote IDSTRINGID of the notetrue

Example JSON Structure

{
  "label" : "Get Note",
  "name" : "getNote",
  "parameters" : {
    "X-Version" : 1,
    "noteId" : ""
  },
  "type" : "productboard/v1/getNote"
}

Output

Type: OBJECT

Properties

NameTypeDescription
dataOBJECT
Properties {STRING(id), STRING(title), STRING(content), STRING(displayUrl), STRING(externalDisplayUrl), {STRING(id)}(company), {STRING(id)}(user), {STRING(email), STRING(name)}(owner), [{STRING(memberId), STRING(memberName), STRING(memberEmail), STRING(teamId), STRING(teamName)}](followers), STRING(state), {STRING(origin), STRING(record_id)}(source), STRING(tags), [{STRING(id), STRING(type), INTEGER(importance)}](features), DATE_TIME(createdAt), DATE_TIME(updatedAt), {STRING(email), STRING(name), STRING(uuid)}(createdBy)}

Output Example

{
  "data" : {
    "id" : "",
    "title" : "",
    "content" : "",
    "displayUrl" : "",
    "externalDisplayUrl" : "",
    "company" : {
      "id" : ""
    },
    "user" : {
      "id" : ""
    },
    "owner" : {
      "email" : "",
      "name" : ""
    },
    "followers" : [ {
      "memberId" : "",
      "memberName" : "",
      "memberEmail" : "",
      "teamId" : "",
      "teamName" : ""
    } ],
    "state" : "",
    "source" : {
      "origin" : "",
      "record_id" : ""
    },
    "tags" : "",
    "features" : [ {
      "id" : "",
      "type" : "",
      "importance" : 1
    } ],
    "createdAt" : "2021-01-01T00:00:00",
    "updatedAt" : "2021-01-01T00:00:00",
    "createdBy" : {
      "email" : "",
      "name" : "",
      "uuid" : ""
    }
  }
}

Update Note

Name: updateNote

Updates a note.

Properties

NameLabelTypeDescriptionRequired
X-VersionX - VersionINTEGERtrue
noteIdNote IDSTRINGID of the notetrue
dataDataOBJECT
Properties {STRING(content), {STRING(email), STRING(name)}(owner), [STRING](tags), STRING(title)}
true

Example JSON Structure

{
  "label" : "Update Note",
  "name" : "updateNote",
  "parameters" : {
    "X-Version" : 1,
    "noteId" : "",
    "data" : {
      "content" : "",
      "owner" : {
        "email" : "",
        "name" : ""
      },
      "tags" : [ "" ],
      "title" : ""
    }
  },
  "type" : "productboard/v1/updateNote"
}

Output

Type: OBJECT

Properties

NameTypeDescription
linksOBJECT
Properties {STRING(html)}
dataOBJECT
Properties {STRING(id)}

Output Example

{
  "links" : {
    "html" : ""
  },
  "data" : {
    "id" : ""
  }
}

Triggers

New Note

Name: newNote

Triggers when a note is created.

Type: DYNAMIC_WEBHOOK

Output

Type: OBJECT

Properties

NameTypeDescription
idSTRINGID of the note.
eventTypeSTRINGType of the event that triggered the webhook.
linksOBJECT
Properties {STRING(target)}
Links to the updated entity.

JSON Example

{
  "label" : "New Note",
  "name" : "newNote",
  "type" : "productboard/v1/newNote"
}

Updated Feature

Name: updatedFeature

Triggers when a feature is updated.

Type: DYNAMIC_WEBHOOK

Output

Type: OBJECT

Properties

NameTypeDescription
idSTRINGID of the updated feature.
eventTypeSTRINGType of the event that triggered the webhook.
linksOBJECT
Properties {STRING(target)}
Links to the updated entity.
updatedAttributesARRAY
Items [STRING]
List of updated attributes.

JSON Example

{
  "label" : "Updated Feature",
  "name" : "updatedFeature",
  "type" : "productboard/v1/updatedFeature"
}

What to do if your action is not listed here?

If this component doesn't have the action you need, you can use Custom Action to create your own. Custom Actions empower you to define HTTP requests tailored to your specific requirements, allowing for greater flexibility in integrating with external services or APIs.

To create a Custom Action, simply specify the desired HTTP method, path, and any necessary parameters. This way, you can extend the functionality of your component beyond the predefined actions, ensuring that you can meet all your integration needs effectively.