Persist the Adyen state data for the quote so it can be used in the payment request
Persist the Adyen state data for the quote so it can be used in the payment request
        POST
    /V1/adyen/guest-carts/{cartId}/state-data
  
  curl \
 --request POST 'https://magento2.winkelstraat.mac/rest/all/V1/adyen/guest-carts/{cartId}/state-data' \
 --data '{"stateData":"string"}'
        Request examples
  
  {
  "stateData": "string"
}
        Response examples (default)
  
  {
  "message": "string",
  "errors": [
    {
      "message": "string",
      "parameters": [
        {
          "resources": "string",
          "fieldName": "string",
          "fieldValue": "string"
        }
      ]
    }
  ],
  "code": 42,
  "parameters": [
    {
      "resources": "string",
      "fieldName": "string",
      "fieldValue": "string"
    }
  ],
  "trace": "string"
}