The MailPlus REST API allows you to interact with your MailPlus account, giving you the opportunity to interact directly with objects such as contacts, mailings and form requests. It allows you to interact with the objects by accessing element URIs using the HTTP verbs (GET, POST, PUT, and DELETE). The API accepts and returns both JSON and XML data.
The MailPlus REST API uses Oauth 1.0a (one leg, see Oauth 1.0a (One Leg) ). A consumer key and secret are required to access your MailPlus account. These can be created in your MailPlus account. If indicated, parameters can be used to select a date range or to receive the response paginated.
You can use the 'fromDate' and 'toDate' parameters to request data within a specific period of time. The date format used is based on the ISO 8601 standard.
Parameters: fromDate: Requests can specify a start date formatted as 'yyyy-mm-ddThh:mm:ss' toDate: Requests can specify an end date formatted as 'yyyy-mm-ddThh:mm:ss'
To enable faster load times and simple browsing of large result sets, results will be returned paginated (if indicated). You can use the 'after' offset and 'pageSize' parameters to page through query results. The 'next' URL is added to the response to request the next specified number of objects.
Parameters: after: The offset of the first record returned. Default value is 0. pageSize: The number of records returned. Default is 1000 (max is 10000).