Create Feedback
POST
/
v1
/
feedback
/
create
Copy
curl --request POST \
--url http://go.cardinalapp.io/api/v1/feedback/create \
--header 'Cardinal-Token: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"title": "<string>",
"content": "<string>",
"reporter": {
"name": "<string>",
"email": "<string>"
},
"owner": {
"email": "<string>"
},
"provided_at": "2023-11-07T05:31:56Z",
"origin": "<string>",
"origin_url": "<string>"
}'
Copy
{
"id": "<string>"
}
Authorizations
Body
application/json
Response
200
application/json
Successful response
The response is of type object
.
Was this page helpful?
Copy
curl --request POST \
--url http://go.cardinalapp.io/api/v1/feedback/create \
--header 'Cardinal-Token: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"title": "<string>",
"content": "<string>",
"reporter": {
"name": "<string>",
"email": "<string>"
},
"owner": {
"email": "<string>"
},
"provided_at": "2023-11-07T05:31:56Z",
"origin": "<string>",
"origin_url": "<string>"
}'
Copy
{
"id": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.