- HTTP request
 - Path parameters
 - Request body
 - Response body
 - Authorization scopes
 - ItemRevisionStatus
 - DistributionChannel
 - Try it!
 
Fetch the status of an item.
HTTP request
GET https://chromewebstore.googleapis.com/v2/{name=publishers/*/items/*}:fetchStatus
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
name | 
                
                   
 Required. Name of the item to retrieve the status of in the form   | 
              
Request body
The request body must be empty.
Response body
Response message for items.fetchStatus.
If successful, the response body contains data with the following structure:
| JSON representation | 
|---|
{ "name": string, "itemId": string, "publicKey": string, "publishedItemRevisionStatus": { object (  | 
                  
| Fields | |
|---|---|
name | 
                    
                       
 The name of the requested item.  | 
                  
itemId | 
                    
                       
 Output only. The ID of the item.  | 
                  
publicKey | 
                    
                       
 The public key of the item, which may be generated by the store.  | 
                  
publishedItemRevisionStatus | 
                    
                       
 Output only. Status of the current published revision of the item. Will be unset if the item is not published.  | 
                  
submittedItemRevisionStatus | 
                    
                       
 Status of the item revision submitted to be published. Will be unset if the item has not been submitted for publishing since the last successful publish.  | 
                  
lastAsyncUploadState | 
                    
                       
 Output only. The state of the last async upload for an item. Only set when there has been an async upload for the item in the past 24 hours.  | 
                  
takenDown | 
                    
                       
 If true, the item has been taken down for a policy violation. Check the developer dashboard for details.  | 
                  
warned | 
                    
                       
 If true, the item has been warned for a policy violation and will be taken down if not resolved. Check the developer dashboard for details.  | 
                  
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/chromewebstorehttps://www.googleapis.com/auth/chromewebstore.readonly
ItemRevisionStatus
Details on the status of an item revision.
| JSON representation | 
|---|
{ "state": enum (  | 
              
| Fields | |
|---|---|
state | 
                
                   
 Output only. Current state of the item  | 
              
distributionChannels[] | 
                
                   
 Details on the package of the item  | 
              
DistributionChannel
Deployment information for a specific release channel
| JSON representation | 
|---|
{ "deployPercentage": integer, "crxVersion": string }  | 
              
| Fields | |
|---|---|
deployPercentage | 
                
                   
 The current deploy percentage for the release channel (nonnegative number between 0 and 100).  | 
              
crxVersion | 
                
                   
 The extension version provided in the manifest of the uploaded package.  |