You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**value** | **String** | Value of the attribute. Use only if the attribute's category is 'calculated' or 'global' | [optional]
7
7
**enumeration** | [**Array<CreateAttributeEnumeration>**](CreateAttributeEnumeration.md) | List of values and labels that the attribute can take. Use only if the attribute's category is \"category\". For example, [{'value':1, 'label':'male'}, {'value':2, 'label':'female'}] | [optional]
8
-
**type** | **String** | Type of the attribute. Use only if the attribute's category is 'normal', 'category' or 'transactional' ( type 'id' is only available if the category is 'transactional' attribute & type 'category' is only available if the category is 'category' attribute ) | [optional]
8
+
**type** | **String** | Type of the attribute. Use only if the attribute's category is 'normal', 'category' or 'transactional' ( type 'boolean' is only available if the category is 'normal' attribute, type 'id' is only available if the category is 'transactional' attribute & type 'category' is only available if the category is 'category' attribute ) | [optional]
type:"type_example", # String | Filter on the type of the campaigns
251
251
status:"status_example", # String | Filter on the status of the campaign
252
+
start_date:DateTime.parse("2013-10-20T19:20:30+01:00"), # DateTime | Mandatory if endDate is used. Starting (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent email campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' )
253
+
end_date:DateTime.parse("2013-10-20T19:20:30+01:00"), # DateTime | Mandatory if startDate is used. Ending (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent email campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' )
252
254
limit:500, # Integer | Number of documents per page
253
255
offset:0# Integer | Index of the first document in the page
254
256
}
@@ -268,6 +270,8 @@ Name | Type | Description | Notes
**type** | **String**| Filter on the type of the campaigns | [optional]
270
272
**status** | **String**| Filter on the status of the campaign | [optional]
273
+
**start_date** | **DateTime**| Mandatory if endDate is used. Starting (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent email campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' ) | [optional]
274
+
**end_date** | **DateTime**| Mandatory if startDate is used. Ending (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent email campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' ) | [optional]
271
275
**limit** | **Integer**| Number of documents per page | [optional][default to 500]
272
276
**offset** | **Integer**| Index of the first document in the page | [optional][default to 0]
Copy file name to clipboardExpand all lines: docs/GetEmailCampaign.md
+1
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@ Name | Type | Description | Notes
23
23
**inline_image_activation** | **BOOLEAN** | Status of inline image. inlineImageActivation = false means image can’t be embedded, & inlineImageActivation = true means image can be embedded, in the email. | [optional]
24
24
**mirror_active** | **BOOLEAN** | Status of mirror links in campaign. mirrorActive = false means mirror links are deactivated, & mirrorActive = true means mirror links are activated, in the campaign | [optional]
25
25
**recurring** | **BOOLEAN** | FOR TRIGGER ONLY ! Type of trigger campaign.recurring = false means contact can receive the same Trigger campaign only once, & recurring = true means contact can receive the same Trigger campaign several times | [optional]
26
+
**sent_date** | **DateTime** | Sent UTC date-time of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ). Only available if 'status' of the campaign is 'sent' | [optional]
Copy file name to clipboardExpand all lines: docs/GetExtendedCampaignOverview.md
+1
Original file line number
Diff line number
Diff line change
@@ -23,5 +23,6 @@ Name | Type | Description | Notes
23
23
**inline_image_activation** | **BOOLEAN** | Status of inline image. inlineImageActivation = false means image can’t be embedded, & inlineImageActivation = true means image can be embedded, in the email. | [optional]
24
24
**mirror_active** | **BOOLEAN** | Status of mirror links in campaign. mirrorActive = false means mirror links are deactivated, & mirrorActive = true means mirror links are activated, in the campaign | [optional]
25
25
**recurring** | **BOOLEAN** | FOR TRIGGER ONLY ! Type of trigger campaign.recurring = false means contact can receive the same Trigger campaign only once, & recurring = true means contact can receive the same Trigger campaign several times | [optional]
26
+
**sent_date** | **DateTime** | Sent UTC date-time of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ). Only available if 'status' of the campaign is 'sent' | [optional]
# @option opts [String] :type Filter on the type of the campaigns
248
248
# @option opts [String] :status Filter on the status of the campaign
249
+
# @option opts [DateTime] :start_date Mandatory if endDate is used. Starting (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent email campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' )
250
+
# @option opts [DateTime] :end_date Mandatory if startDate is used. Ending (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent email campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' )
249
251
# @option opts [Integer] :limit Number of documents per page (default to 500)
250
252
# @option opts [Integer] :offset Index of the first document in the page (default to 0)
# @option opts [String] :type Filter on the type of the campaigns
261
263
# @option opts [String] :status Filter on the status of the campaign
264
+
# @option opts [DateTime] :start_date Mandatory if endDate is used. Starting (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent email campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' )
265
+
# @option opts [DateTime] :end_date Mandatory if startDate is used. Ending (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent email campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' )
262
266
# @option opts [Integer] :limit Number of documents per page
263
267
# @option opts [Integer] :offset Index of the first document in the page
264
268
# @return [Array<(GetEmailCampaigns, Fixnum, Hash)>] GetEmailCampaigns data, response status code and response headers
Copy file name to clipboardExpand all lines: lib/sib-api-v3-sdk/models/create_attribute.rb
+3-3
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ class CreateAttribute
21
21
# List of values and labels that the attribute can take. Use only if the attribute's category is \"category\". For example, [{'value':1, 'label':'male'}, {'value':2, 'label':'female'}]
22
22
attr_accessor:enumeration
23
23
24
-
# Type of the attribute. Use only if the attribute's category is 'normal', 'category' or 'transactional' ( type 'id' is only available if the category is 'transactional' attribute & type 'category' is only available if the category is 'category' attribute )
24
+
# Type of the attribute. Use only if the attribute's category is 'normal', 'category' or 'transactional' ( type 'boolean' is only available if the category is 'normal' attribute, type 'id' is only available if the category is 'transactional' attribute & type 'category' is only available if the category is 'category' attribute )
25
25
attr_accessor:type
26
26
27
27
classEnumAttributeValidator
@@ -98,15 +98,15 @@ def list_invalid_properties
98
98
# Check to see if the all the properties in the model are valid
Copy file name to clipboardExpand all lines: lib/sib-api-v3-sdk/models/get_email_campaign.rb
+11-1
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,9 @@ class GetEmailCampaign
74
74
# FOR TRIGGER ONLY ! Type of trigger campaign.recurring = false means contact can receive the same Trigger campaign only once, & recurring = true means contact can receive the same Trigger campaign several times
75
75
attr_accessor:recurring
76
76
77
+
# Sent UTC date-time of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ). Only available if 'status' of the campaign is 'sent'
Copy file name to clipboardExpand all lines: lib/sib-api-v3-sdk/models/get_extended_campaign_overview.rb
+14-4
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,9 @@ class GetExtendedCampaignOverview
74
74
# FOR TRIGGER ONLY ! Type of trigger campaign.recurring = false means contact can receive the same Trigger campaign only once, & recurring = true means contact can receive the same Trigger campaign several times
75
75
attr_accessor:recurring
76
76
77
+
# Sent UTC date-time of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ). Only available if 'status' of the campaign is 'sent'
Copy file name to clipboardExpand all lines: spec/api/email_campaigns_api_spec.rb
+2
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,8 @@
87
87
# @param [Hash] opts the optional parameters
88
88
# @option opts [String] :type Filter on the type of the campaigns
89
89
# @option opts [String] :status Filter on the status of the campaign
90
+
# @option opts [DateTime] :start_date Mandatory if endDate is used. Starting (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent email campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' )
91
+
# @option opts [DateTime] :end_date Mandatory if startDate is used. Ending (urlencoded) UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) to filter the sent email campaigns. Prefer to pass your timezone in date-time format for accurate result ( only available if either 'status' not passed and if passed is set to 'sent' )
90
92
# @option opts [Integer] :limit Number of documents per page
91
93
# @option opts [Integer] :offset Index of the first document in the page
0 commit comments