Skip to main content
POST
/
v1
/
models
/
{modelId}
/
suggestions
/
{suggestionId}
/
ignore
Dismiss a suggestion
curl --request POST \
  --url https://{instance}.omniapp.co/api/v1/models/{modelId}/suggestions/{suggestionId}/ignore \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "Already covered by an existing field description."
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Can be either an Organization API Key or Personal Access Token (PAT).

Include in the Authorization header as: Bearer YOUR_TOKEN

Path Parameters

modelId
string<uuid>
required

The unique identifier of the model.

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

suggestionId
string<uuid>
required

The unique identifier of the suggestion to dismiss.

Example:

"b2c3d4e5-f6a7-8901-bcde-f12345678901"

Body

application/json
reason
string

Optional free-text reason for dismissing the suggestion.

Maximum string length: 4000
Example:

"Already covered by an existing field description."

Response

Suggestion dismissed successfully

success
boolean

Indicates the request was successful

Example:

true