Skip to main content
POST
/
v1
/
resources
/
move
Move a resource to another organization
curl --request POST \
  --url http://0.0.0.0:3000/v1/resources/move \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "resource_type": "dashboard",
  "resource_id": 5,
  "target_org_id": "org_abc123"
}
'
{
  "ok": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
resource_type
enum<string>
required
Available options:
config_entry,
dashboard,
automation,
script
resource_id
integer
required

ID numérico do recurso

target_org_id
string | null

ID da org de destino (null = pessoal)

Response

Resource moved