Skip to main content
POST
/
v3
/
profiles
/
{profile}
/
regions
Add Profile Region
curl --request POST \
  --url http://localhost/api/v3/profiles/{profile}/regions \
  --header 'Content-Type: application/json' \
  --data '
{
  "region_id": 123,
  "is_active": true,
  "country": "<string>",
  "state": "<string>"
}
'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "handle": "<string>",
      "is_active": "<string>",
      "country": "<string>",
      "state": "<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.

Path Parameters

profile
string<uuid>
required

The profile ID

Body

application/json
region_id
integer
required
is_active
boolean | null
country
string | null
state
string | null

Response

Array of ProfileRegion

data
ProfileRegion · object[]
required