Skip to main content
PATCH
/
v1
/
portals
/
{id}
Update portal status
curl --request PATCH \
  --url http://localhost:3000/v1/portals/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "is_active": true
}
'
{
  "portal": {
    "id": "<string>",
    "portal_number": 123,
    "name": "<string>",
    "is_active": true
  }
}

Path Parameters

id
string
required

Portal ID

Body

application/json
is_active
boolean
required

Whether the portal is active

Response

Portal updated successfully

portal
object
required