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.
{
"createdAt": "2020-05-15T08:22:54.682Z",
"body": "<p>Conversation details....</p>",
"id": "1234",
"author": {
"avatarURL": "https://getacute.io/image.png",
"fullName": "Author Name",
"id": "1234"
},
"feedback": {
"title": "feedback title",
"body": "feedback body",
"id": "1234",
"githubIssueNumber": "10"
},
"url": "https://app.getacute.io/feedback/1234",
"intercomConversationUrl": "https://app.intercom.com/a/apps/app_id/inbox/inbox/conversation/1234"
}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.
{
"tag": {
"type": "tag",
"id": "1234",
"name": "acute - feedback title",
}
}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.
{
"createdAt": "2020-05-15T09:34:48.411Z",
"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",
"githubIssueNumber": "1"
}Last updated
Was this helpful?