Skip to main content
POST
/
v3
/
points
/
definitions
Add Point Definition
curl --request POST \
  --url http://localhost/api/v3/points/definitions \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "handle": "<string>",
  "region_id": 123,
  "currency": "<string>",
  "description": "<string>",
  "notes": "<string>",
  "is_reassignable": true,
  "issue_period": 123,
  "issue_period_type": "hours",
  "issue_absolute_expiry": "<string>",
  "tags": [
    "<string>"
  ]
}
'
{
  "data": {
    "id": 123,
    "name": "<string>",
    "handle": "<string>",
    "region_id": 123,
    "region": {
      "id": 123,
      "name": "<string>",
      "handle": "<string>"
    },
    "currency": "<string>",
    "description": "<string>",
    "notes": "<string>",
    "is_reassignable": true,
    "issue_period": 123,
    "issue_period_type": "<string>",
    "issue_absolute_expiry": "<string>",
    "tags": [
      "<string>"
    ],
    "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
handle
string
required
region_id
integer | null
currency
string | null
Pattern: ^[A-Z]+$
description
string | null
notes
string | null
is_reassignable
boolean | null
issue_period
integer | null
issue_period_type
enum<string> | null
Available options:
hours,
days,
weeks,
months,
years,
absolute_date,
absolute_week,
absolute_month
issue_absolute_expiry
string | null
tags
string[]

Response

PointDefinition

data
PointDefinition · object
required