Information | Description |
---|
Integration ID | Each integration has a unique ID. The integration ID is available on the overview tab of your integration settings. |
Integration Secret | A random secret is available if enabled. This key can be used to sign a REST request using HMAC Authentication. Read more here. Generate secret key and store it in a notepad. This secret will only be visible once. Copy this and save it for future use after regeneration. |
Address / Cluster | Please check with your account manager which cluster applies to your system. Available clusters: |
B) Test Connectivity and Authentication
GET/<INTEGRATION ID>/ping
Response example:
{
"ping": true,
"integrationId": "47291122-e5bb-4865-a107-a68ec9957325",
"timestamp": 1555054882877
}
CODE
C) Set Configuration Parameters and Change Status
POST/<INTEGRATION ID>/connect
Request example:
{
"params":{
"magentourl":"www.supermagento.pl",
"someconfigparam":"42"
}
}
CODE