|
4726 | 4726 | "/api/v2/subscribe-pages": { |
4727 | 4727 | "get": { |
4728 | 4728 | "tags": [ |
4729 | | - "subscriptions" |
| 4729 | + "subscribe-pages" |
4730 | 4730 | ], |
4731 | 4731 | "summary": "Get subscribe pages list", |
4732 | 4732 | "description": "🚧 **Status: Beta** – This method is under development. Avoid using in production.", |
|
4811 | 4811 | }, |
4812 | 4812 | "post": { |
4813 | 4813 | "tags": [ |
4814 | | - "subscriptions" |
| 4814 | + "subscribe-pages" |
4815 | 4815 | ], |
4816 | 4816 | "summary": "Create subscribe page", |
4817 | 4817 | "description": "🚧 **Status: Beta** – This method is under development. Avoid using in production.", |
|
4898 | 4898 | "/api/v2/subscribe-pages/{id}": { |
4899 | 4899 | "get": { |
4900 | 4900 | "tags": [ |
4901 | | - "subscriptions" |
| 4901 | + "subscribe-pages" |
4902 | 4902 | ], |
4903 | 4903 | "summary": "Get subscribe page", |
4904 | 4904 | "description": "🚧 **Status: Beta** – This method is under development. Avoid using in production.", |
|
4958 | 4958 | }, |
4959 | 4959 | "put": { |
4960 | 4960 | "tags": [ |
4961 | | - "subscriptions" |
| 4961 | + "subscribe-pages" |
4962 | 4962 | ], |
4963 | 4963 | "summary": "Update subscribe page", |
4964 | 4964 | "description": "🚧 **Status: Beta** – This method is under development. Avoid using in production.", |
|
5053 | 5053 | }, |
5054 | 5054 | "delete": { |
5055 | 5055 | "tags": [ |
5056 | | - "subscriptions" |
| 5056 | + "subscribe-pages" |
5057 | 5057 | ], |
5058 | 5058 | "summary": "Delete subscribe page", |
5059 | 5059 | "description": "🚧 **Status: Beta** – This method is under development. Avoid using in production.", |
|
5108 | 5108 | "/api/v2/public/subscribe-pages/{pageId}": { |
5109 | 5109 | "get": { |
5110 | 5110 | "tags": [ |
5111 | | - "public" |
| 5111 | + "subscribe-pages" |
5112 | 5112 | ], |
5113 | 5113 | "summary": "Get public subscribe page (placeholders replaced with actual values)", |
5114 | 5114 | "description": "🚧 **Status: Beta** – This method is under development. Avoid using in production.", |
|
5149 | 5149 | }, |
5150 | 5150 | "post": { |
5151 | 5151 | "tags": [ |
5152 | | - "public" |
| 5152 | + "subscribe-pages" |
5153 | 5153 | ], |
5154 | 5154 | "summary": "Create subscription", |
5155 | 5155 | "description": "🚧 **Status: Beta** – This method is under development. Avoid using in production.Subscribe subscriber to a list from subscribe page.", |
|
8658 | 8658 | "example": "Subscribe to our newsletter" |
8659 | 8659 | }, |
8660 | 8660 | "data": { |
8661 | | - "type": "array", |
8662 | | - "items": { |
8663 | | - "type": "object", |
8664 | | - "additionalProperties": { |
8665 | | - "type": "string" |
| 8661 | + "properties": { |
| 8662 | + "attributes": { |
| 8663 | + "type": "array", |
| 8664 | + "items": { |
| 8665 | + "properties": { |
| 8666 | + "id": { |
| 8667 | + "type": "integer" |
| 8668 | + }, |
| 8669 | + "name": { |
| 8670 | + "type": "string" |
| 8671 | + }, |
| 8672 | + "type": { |
| 8673 | + "type": "string" |
| 8674 | + }, |
| 8675 | + "required": { |
| 8676 | + "type": "boolean" |
| 8677 | + }, |
| 8678 | + "default_value": { |
| 8679 | + "type": "string", |
| 8680 | + "nullable": true |
| 8681 | + }, |
| 8682 | + "list_order": { |
| 8683 | + "type": "integer" |
| 8684 | + }, |
| 8685 | + "options": { |
| 8686 | + "type": "array", |
| 8687 | + "items": { |
| 8688 | + "type": "object" |
| 8689 | + } |
| 8690 | + } |
| 8691 | + }, |
| 8692 | + "type": "object" |
| 8693 | + } |
| 8694 | + }, |
| 8695 | + "lists": { |
| 8696 | + "type": "array", |
| 8697 | + "items": { |
| 8698 | + "properties": { |
| 8699 | + "id": { |
| 8700 | + "type": "integer" |
| 8701 | + }, |
| 8702 | + "name": { |
| 8703 | + "type": "string" |
| 8704 | + }, |
| 8705 | + "description": { |
| 8706 | + "type": "string", |
| 8707 | + "nullable": true |
| 8708 | + }, |
| 8709 | + "list_position": { |
| 8710 | + "type": "integer" |
| 8711 | + } |
| 8712 | + }, |
| 8713 | + "type": "object" |
| 8714 | + } |
8666 | 8715 | } |
| 8716 | + }, |
| 8717 | + "type": "object", |
| 8718 | + "additionalProperties": { |
| 8719 | + "oneOf": [ |
| 8720 | + { |
| 8721 | + "type": "string" |
| 8722 | + }, |
| 8723 | + { |
| 8724 | + "type": "integer" |
| 8725 | + }, |
| 8726 | + { |
| 8727 | + "type": "boolean" |
| 8728 | + }, |
| 8729 | + { |
| 8730 | + "type": "array", |
| 8731 | + "items": { |
| 8732 | + "type": "object" |
| 8733 | + } |
| 8734 | + }, |
| 8735 | + { |
| 8736 | + "type": "object" |
| 8737 | + } |
| 8738 | + ] |
8667 | 8739 | } |
8668 | 8740 | } |
8669 | 8741 | }, |
|
8933 | 9005 | "description": "subscriptions" |
8934 | 9006 | }, |
8935 | 9007 | { |
8936 | | - "name": "public", |
8937 | | - "description": "public" |
| 9008 | + "name": "subscribe-pages", |
| 9009 | + "description": "subscribe-pages" |
8938 | 9010 | }, |
8939 | 9011 | { |
8940 | 9012 | "name": "subscriber-attributes", |
|
0 commit comments