Skip to main content
POST
/
v3
/
currencies
Add Currency
curl --request POST \
  --url http://localhost/api/v3/currencies \
  --header 'Content-Type: application/json' \
  --data '
{
  "from": "<string>",
  "to": "<string>",
  "rate": 123,
  "is_system": true
}
'
{
  "data": {
    "id": 123,
    "from": "<string>",
    "to": "<string>",
    "rate": 123,
    "is_system": true,
    "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
from
string
required
Required string length: 3
to
string
required
Required string length: 3
rate
number
required
is_system
boolean

Response

Currency

data
Currency · object
required