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
}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
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource moved