Skip to main content
POST
/
v3
/
targets
Add a Target
curl --request POST \
  --url http://localhost/api/v3/targets \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "url": "<string>",
  "handle": "<string>",
  "template": "<string>",
  "notes": "<string>",
  "description": "<string>",
  "condition": [
    "<string>"
  ]
}
'
{
  "data": {
    "id": 123,
    "url": "<string>",
    "name": "<string>",
    "handle": "<string>",
    "template": "<string>",
    "description": "<string>",
    "notes": "<string>",
    "condition": [
      "<unknown>"
    ],
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.omneo.io/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
name
string
required
url
string<uri>
required
handle
string
required
template
string
required
notes
string | null
description
string | null
condition
string[] | null

Response

Target

data
Target · object
required