Recent Posts in My Followed Categories
Switch the "Categories" drop down to see either Recent posts in All categories or only posts in the categories you Follow.
-
OT Notification SOAP UI to fetch status report using Customer Reference or Billing Reference field
We have a requirement to retrieve the status of a job. The current SOAP request provided only allows us to send the job number to fetch the job details. However, we would like to use the Customer Reference or Billing Reference field instead to achieve the same. Is it possible to modify the existing SOAP UI XML to…
-
401 Authentication Error When Trying to Send Emails using Cloud Messaging with Basic Authentication
Hi All, I am able to successfully send emails using OpenText Cloud (POST /mra/v1/outbound/emails) - However, when I try the same request using Cloud Messaging (POST /mra/v1/outbound/emails) - I end up getting a 401 response with the following error: { "error_code": "2909", "error_message": "Authentication Error" } I am…
-
Facing issue with myportal login.
The MessageContext does not have an associated SOAPFault.
-
Showing Job status Error
I am trying to send email using below Opentext POST APIPOST API : https://t2api.us.cloudmessaging.opentext.com/mra/v1/outbound/emails receiving Job ID in response, but emails can't receive in recipient mailbox.On myportal dashboard showing JOB Status Error, Why Facing this issue?Job Status screenshot :
-
Related to webhook Response
I have receiving webhook response in Text format, but in document mentioned that webhook response received in Json format. than why its receive in text format? Document Reference link :
-
The “Send Email” process is NOT calling our call-back webhook.
Send Email The “Send Email” process is NOT calling our call-back webhook. (https://t2api.us.cloudmessaging.opentext.com/mra/v1/outbound/emails) No requests coming into the webhook urls
-
Postman collection for the Messaging Service
The requests in this Postman collection show how to: Authenticate with the OpenText Cloud platform using your developer application Post Email Send requests and check the status of the job Post SMS Send requests and check the status of the job Post Fax Send requests and check the status of the job Review the Postman…
-
Push Notifications Postman sample
This Postman sample allows sending Push Notifications to an Android and/or iOS application. It uses OpenText messaging system and Google Firebase to send the notification. The Postman file contains placeholders that should be filled with actual values. GitHub:…
-
Podcast - Amplify development via Notifications and Cloud Fax services
OpenText Developer Cast Amplify the development of custom cloud fax, sms and email notification services on your business, mobile or web applications via the integrations of powerful APIs. Click here to listen More information for developing with cloud fax and notifications Start your trial today!
-
What's New - Push Notifications
Push Notifications are short, timely, one-way messages that pop-up on a mobile device from an installed app. App publishers use them to alert consumers of information that they have opted in to receive. The popularity of brand-specific phone apps and the minimal cost impact of these communications to the consumer continues…
-
Podcast - Amplify development via Notifications and Cloud Fax services
OpenText Developer Cast Amplify development of custom cloud fax, sms and email notification services on your business, mobile or web applications via the integrations of powerful APIs. Listen
-
Postman collection for Cloud Fax and Notifications
OpenText CloudFax and Notifications consists of a collection of APIs used by customers to send faxes, emails, sms and check the delivery status of them. The APIs are based on REST architecture with JSON schema representation. The URIs are easily understood and resource-based. We abide by the standards of HTTP, using the…
-
Trial Evaluation Agreement for Cloud fax and Notifications Developer Plans
Trial Evaluation Agreement The terms and conditions governing this Agreement are as follows: 1. Cloud fax and/or Notifications Services. Open Text will provide Fax2Mail and/or Notifications services (the “Services”) to Developer, as set forth in Exhibit A attached hereto, during the trial evaluation period set forth in…
-
Quick start guide for cloud fax and notifications trial subscribers
Get a test account by signing up for a free trial for "cloud fax and notifications developer plans" at Plans | Developer | OpenText How to submit a request to send a fax? Here is the curl sample to submit a request to send a fax with a text file with basic authentication (user name and password). curl -H "Content-Type:…
-
How to send SMS request using SMS REST API
How to submit a request to send SMS notification using SMS REST API? Here is an example of curl command to submit a request to send SMS Notification. curl -H "Content-Type: application/json" \ -u <userid:password> \ --data-binary "{ \"destinations\": [ { \"sms\": \"recipient sms address\" } ], \"sms_text\": \"Hi There,…