AI-generated Key Takeaways
-
Reactivates a suspended Google Workspace subscription, resetting its state to
ACTIVE
after the suspension error is resolved. -
Requires a
POST
request tohttps://workspaceevents.googleapis.com/v1/{name=subscriptions/*}:reactivate
, with the subscription name provided as a path parameter. -
The request body should be empty, and a successful response includes an
Operation
object with the updatedSubscription
details. -
Authorization requires one of the specified OAuth scopes, such as
https://www.googleapis.com/auth/chat.spaces
or similar, for access and interaction with Google Workspace resources.
Reactivates a suspended Google Workspace subscription.
This method resets your subscription's State
field to ACTIVE
. Before you use this method, you must fix the error that suspended the subscription. This method will ignore or reject any subscription that isn't currently in a suspended state. To learn how to use this method, see Reactivate a Google Workspace subscription.
HTTP request
POST https://workspaceevents.googleapis.com/v1/{name=subscriptions/*}:reactivate
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
name |
Required. Resource name of the subscription. Format: |
Request body
The request body must be empty.
Response body
If successful, the response body contains an instance of Operation
.
- The
metadata
field contains an empty array. - The
response
field contains an updated instance ofSubscription
.
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/chat.spaces
https://www.googleapis.com/auth/chat.spaces.readonly
https://www.googleapis.com/auth/chat.messages
https://www.googleapis.com/auth/chat.messages.readonly
https://www.googleapis.com/auth/chat.messages.reactions
https://www.googleapis.com/auth/chat.messages.reactions.readonly
https://www.googleapis.com/auth/chat.memberships
https://www.googleapis.com/auth/chat.memberships.readonly
https://www.googleapis.com/auth/meetings.space.created
https://www.googleapis.com/auth/meetings.space.readonly
For more information, see the Authorization guide.