AI-generated Key Takeaways
-
Updates a product certification linking certifications with products, accessible only by certification bodies.
-
Utilizes an HTTP PATCH request with the format
PATCH https://manufacturers.googleapis.com/v1/{productCertification.name=accounts/*/languages/*/productCertifications/*}
. -
Requires a request body containing a
ProductCertification
instance for updating. -
Needs authorization with the
https://www.googleapis.com/auth/manufacturercenter
scope. -
Returns the updated
ProductCertification
instance in the response body upon successful completion.
- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Try it!
Updates (or creates if allow_missing = true) a product certification which links certifications with products.
This method can only be called by certification bodies.
HTTP request
PATCH https://manufacturers.googleapis.com/v1/{productCertification.name=accounts/*/languages/*/productCertifications/*}
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
productCertification.name |
Required. The unique name identifier of a product certification Format: accounts/{account}/languages/{language_code}/productCertifications/{id} Where |
Query parameters
Parameters | |
---|---|
updateMask |
Optional. The list of fields to update according to aip.dev/134. However, only full update is supported as of right now. Therefore, it can be either ignored or set to "*". Setting any other values will returns UNIMPLEMENTED error. This is a comma-separated list of fully qualified names of fields. Example: |
Request body
The request body contains an instance of ProductCertification
.
Response body
If successful, the response body contains an instance of ProductCertification
.
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/manufacturercenter
For more information, see the OAuth 2.0 Overview.