POST
/
api
/
users
/
{userId}
/
feedback
Send feedback
curl --request POST \
  --url https://studio.edgeimpulse.com/v1/api/users/{userId}/feedback \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "type": "feedback",
  "subject": "<string>",
  "body": "<string>",
  "workEmail": "<string>",
  "company": "<string>",
  "jobTitle": "<string>",
  "companySize": "<string>",
  "organizationId": 123
}'
{
  "success": true,
  "error": "<string>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

userId
integer
required

User ID

Body

application/json
type
enum<string>
required
Available options:
feedback
subject
string
required

The reason the user is contacting Edge Impulse Support.

body
string
required

The body of the message.

workEmail
string

The user's work email address. This is optional, if it's not provided, the registered email will be used.

company
string

The user's company. This is optional.

jobTitle
string

The user's job title. This is optional.

companySize
string

The user's company size. This is optional.

organizationId
number

The user's organization ID. This is optional.

Response

200 - application/json

OK

success
boolean
required

Whether the operation succeeded

error
string

Optional error description (set if 'success' was false)