Endpoints for Zapier

Acute's endpoints for Zapier

Get feedback

GET https://admin.api.getacute.io/zapier/cards

Get all feedback cards.

Headers

Name
Type
Description

Authentication

string

Authentication token.

{    
    "createdAt": "2020-05-14T13:43:07.037Z",
    "title": "feedback title",
    "body": "feedback body",
    "state": "req",
    "votes": 1,
    "id": "1234",
    "comments": 0,
    "author": {
        "avatarURL": "https://getacute.io/image.png",
        "fullName": "Author Name",
        "id": "1234"
    },
    "url": "https://app.getacute.io/feedback/1234",
    "intercomConversationUrl": "https://app.intercom.com/a/apps/app_id/inbox/inbox/conversation/1234"
}

Get conversations

GET https://admin.api.getacute.io/zapier/conversations

Get all feedback conversations.

Headers

Name
Type
Description

Authentication

string

Authentication token.

Create Intercom tag

POST https://admin.api.getacute.io/intercom/cards/create-tag

Create Intercom tag for feedback card.

Headers

Name
Type
Description

Authentication

string

Authentication token.

Request Body

Name
Type
Description

id

string

Feedback card id.

Add Github issue to feedback card

POST https://admin.api.getacute.io/zapier/cards/add-github-issue

Create Github issue for feedback card.

Headers

Name
Type
Description

Authentication

string

Authentication token.

Request Body

Name
Type
Description

cardId

string

Feedback card id.

issueNumber

string

Github issue number.

Last updated