cms-meta.xml 1020 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <operations xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:mftf:DataGenerator/etc/dataOperation.xsd">
  10. <operation name="CreateCMSPage" dataType="cms_page" type="create" auth="adminOauth" url="/V1/cmsPage" method="POST">
  11. <contentType>application/json</contentType>
  12. <object key="page" dataType="cms_page">
  13. <field key="identifier">string</field>
  14. <field key="title">string</field>
  15. <field key="content_heading">string</field>
  16. <field key="active">true</field>
  17. <field key="content">string</field>
  18. </object>
  19. </operation>
  20. <operation name="DeleteCMS" dataType="cms_page" type="delete" auth="adminOauth" url="/V1/cmsPage/{id}" method="DELETE">
  21. <contentType>application/json</contentType>
  22. </operation>
  23. </operations>