Backoffice API
  1. Organizations
Backoffice API
  • Back to home
  • Community
  • Events
    • Blocks
      • Event blocks by id
      • Manage Event blocks by id
      • Event Block entries by ids
      • Manage Event Block entries by ids
    • List events
      GET
    • Create Event
      POST
    • Event by id
      GET
    • Update Event by id
      PATCH
    • Remove Event by id
      DELETE
    • Event occurrences by id
      GET
    • Update Event Block by ids
      PATCH
  • Organizations
    • Blocks
      • Organization blocks by id
      • Manage Organization blocks by id
      • Organization Block entries by ids
      • Manage Organization Block entries by ids
    • List organizations
      GET
    • Create Organization
      POST
    • Organization by id
      GET
    • Update Organization by id
      PATCH
    • Remove Organization by id
      DELETE
    • Update Organization Block by ids
      PATCH
  • People
    • Blocks
      • Person blocks by id
      • Manage Person blocks by id
      • Person Block entries by ids
      • Manage Person Block entries by ids
    • List people
      GET
    • Create Person
      POST
    • Person by id
      GET
    • Update Person by id
      PATCH
    • Remove Person by id
      DELETE
    • Update Person Block by ids
      PATCH
  • Projects
    • Blocks
      • Project blocks by id
      • Manage Project blocks by id
      • Project Block entries by ids Copy
      • Manage Project Block entries by ids
    • List projects
      GET
    • Create Project
      POST
    • Project by id
      GET
    • Update Project by id
      PATCH
    • Remove Project by id
      DELETE
    • Update Project Block by ids
      PATCH
  1. Organizations

Update Organization Block by ids

Developing
PATCH
/organizations/{id}/blocks/{block_id}

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
API Key
Add parameter in query
x-api-key
Example:
x-api-key: ********************
or
Path Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠400Invalid UUID
🟠400Bad Request
🟠401Unauthorized API KEY
🟠403Unauthorized roles
🟠404Entity not found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request PATCH 'https://prod.your-api-server.com/api/community/v2/organizations/{{community_org_id}}/blocks/50d9e156-766b-4ec0-a8d3-5699edb08f69' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "profile_id": "bfcb6779-b1f9-41fc-92d7-88f8bc1d12e8",
    "block_type_id": "a24ce7c3-d828-4802-8bc1-824c4e745e7f",
    "locales": [
        {
            "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
            "locale": "en",
            "name": "string"
        }
    ]
}'
Response Response Example
200 - Example 1
{
    "data": [
        {}
    ]
}
Modified at 2025-05-02 07:46:03
Previous
Remove Organization by id
Next
Person blocks by id
Built with