PATCH
/blocks/{block_id}
curl \
--request PATCH 'http://api.example.com/blocks/{block_id}' \
--header "Content-Type: application/json" \
--data '{"id":42,"created_at":"2025-05-04T09:42:00Z","updated_at":"2025-05-04T09:42:00Z","storage":42,"resolver":"string","content":"string"}'
Request examples
{
"id": 42,
"created_at": "2025-05-04T09:42:00Z",
"updated_at": "2025-05-04T09:42:00Z",
"storage": 42,
"resolver": "string",
"content": "string"
}
Response examples (200)
{
"id": 42,
"created_at": "2025-05-04T09:42:00Z",
"updated_at": "2025-05-04T09:42:00Z",
"storage": 42,
"resolver": "string",
"content": "string"
}
Response examples (422)
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}