Get catalog publication status

Endpoint to check the current status of a catalog publication, using the generated id returned in the publication response.

GET

https://api.mercadopago.com/proximity/integration/v1/catalog/{publication_id}
Request parameters
Header
Authorization
string

REQUIRED

Access Token obtained through the developer panel. Must be sent in all requests.
Path
publication_id
string

REQUIRED

Publication ID returned by import process.
Response parameters
status
string
Current catalog publication process status.
processing: The catalog is being processed.
error: The publication process has been aborted because some irrecoverable error occurred.
success: the catalog has been published.
Errors

400Description of the error.

error

Publication error caused by some inconsistency in the fields.

Provide valid data in the request parameters before executing.
Request
curl -X GET \
    'https://api.mercadopago.com/proximity/integration/v1/catalog/{publication_id}'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer APP_USR-1*********685765-12*********1b4332e5c*********e077d7679*********664' \
    
Response
{
  "status": "success"
}