Support Endpoint - mollie/orocommerce GitHub Wiki

All support endpoints are sited behind the shop admin section and shop backend access (at least for oro_integration_view) is required.

  1. Endpoint to retrieve debug configuration status:

    GET <baseurl>/<admin-path>/mollie/support/status
    

    To call this endpoint from developer console use this snippet:

    var xmlHttp = new XMLHttpRequest();
    xmlHttp.open( "GET", '<baseurl>/<admin-path>/mollie/support/status', false );
    xmlHttp.send('');
    
  2. Endpoint for debug configuration update:

    POST <baseurl>/<admin-path>/mollie/support/status
    

    To call this endpoint from developer console use this snippet:

    var xmlHttp = new XMLHttpRequest();
    xmlHttp.open( "POST", '<baseurl>/<admin-path>/mollie/support/status', false );
    xmlHttp.send('{"debugStatus": true}');
    
  3. Endpoint for diagnostic data (system info, log files, order references...) download:

    GET <baseurl>/<admin-path>/mollie/support/download_debug_data
    

    This endpoint will return a ZIP archive with diagnostic data, trigger this endpoint directly in the browser address bar.

⚠️ **GitHub.com Fallback** ⚠️