AI-generated Key Takeaways
-
Updates a specific question's text using a PATCH request to the specified endpoint.
-
Requires providing the question's unique name as a path parameter and specifying fields to update using
updateMask
query parameter. -
The request and response bodies utilize the
Question
object, containing question details. -
Authorization necessitates the
https://www.googleapis.com/auth/business.manage
scope for managing business data.
Updates a specific question written by the current user.
HTTP request
PATCH https://mybusinessqanda.googleapis.com/v1/{question.name=locations/*/questions/*}
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
question.name |
Immutable. The unique name for the question. locations/*/questions/* This field will be ignored if set during question creation. |
Query parameters
Parameters | |
---|---|
updateMask |
Required. The specific fields to update. Only question text can be updated. This is a comma-separated list of fully qualified names of fields. Example: |
Request body
The request body contains an instance of Question
.
Response body
If successful, the response body contains an instance of Question
.
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/business.manage
For more information, see the OAuth 2.0 Overview.