API

Post a feedback

POST https://widget.crowdmap.io/feedbacks/{organization_name}

This endpoint allows you to post feedback with API.

Path Parameters

Name
Type
Description

organization_name

string

ID of the cake to get, for free of course.

Request Body

Name
Type
Description

status

string

Status of the feedback, "open", "review", "planned", "completed", "closed"

ftimestamp

number

Date of the feedback, timestamp format

email

string

Author of the feedback

noteGlobal

number

-2 for 1 star, -1 for 2 stars, 0 for 3 stars, 1 for 4 stars, 2 for 5 stars

ftext

string

Content of the feedback

tags

array

Array of tags

{
    "result": "success"
}
{
  "email": "hello@crowdmap.io",
  "status": "open",
  "noteGlobale": 1,
  "ftext": "Awesome app !",
  "ftimestamp": "1538387159000"
}

Get feedback

GET https://api.crowdmap.io/prod/v1/feedbacks

Get feedback from your organisation with basic AUTH.

[
    {
        "deletionDate": null,
        "ftimestamp": 1519143620,
        "capture": false,
        "noteGlobale": 1,
        "ftext": "If, after best efforts, you cannot create an accessible page, provide a link to an alternative page that uses W3C technologies, is accessible, has equivalent information (or functionality), and is updated as often as the inaccessible (original) page.",
        "creationDate": 1545321954714,
        "email": "erwan@crowdmap.io",
        "fstatus": "closed",
        "fsource": "Widget",
        "clientId": "crowdmap",
        "objId": "213f6890"
    },
    {
        "ftimestamp": 1490889865686,
        "creationDate": 1501094230646,
        "email": "erwan@crowdmap.io",
        "fsource": "widget",
        "clientId": "crowdmap",
        "objId": "1d290140",
        "deletionDate": null,
        "capture": true,
        "userID": 1111,
        "noteGlobale": 5,
        "ftext": "awesome app !",
        "fstatus": "",
        "tags": [
            "app"
        ]
    }
]

Last updated