curl --request PATCH \
--url https://api.hyra.io/workspace/google/{workspaceId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"format": {
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>"
},
"admin_email": "<string>"
}'
{
"format": {
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>"
},
"admin_email": "<string>",
"setup": true
}
Update Google Workspace Configuration
curl --request PATCH \
--url https://api.hyra.io/workspace/google/{workspaceId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"format": {
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>"
},
"admin_email": "<string>"
}'
{
"format": {
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>"
},
"admin_email": "<string>",
"setup": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Default Response
The response is of type object
.