curl --location --request PUT 'https://api.perfectworks.io/api/v0/organizations/me' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Acme Corporation",
"phoneNumber": "+1-555-987-6543",
"description": "Leading provider of innovative solutions",
"logo": "https://example.com/new-logo.png"
}'
{
"success": true,
"message": "Operation completed successfully",
"data": {
"id": "123",
"name": "Example"
}
}