Skip to main content
PUT
/
api
/
users
/
{id}
/
organizaciones
Overwrite all organizaciones assiged to a user with new list of organizaciones
curl --request PUT \
  --url https://api.example.com/api/users/{id}/organizaciones \
  --header 'Content-Type: application/json' \
  --data '
{
  "organizaciones": [
    "Quorum de elderes",
    "Escuela dominical",
    "Hombres jóvenes"
  ]
}
'

Path Parameters

id
string
required

User id (should be a UUID)

Body

application/json
organizaciones
string[]

Response

OK