How do I download attachments from Workday through web service or RAAS by File_ID or WID? - workday-api

I have a report (as a web service) that gives attachments attached to the Customer Payments. I had to use the report because sadly, Get_Customer_Payments web service does not have attachment data. I have not used base64 data in the report because otherwise the report will be too large. So, all I get from the report is a WID and a File_ID for attachments. So, if I only have File_ID or WID of attachments, how do I download these attachments?

Related

YouTube Reporting API Bulk Data Content Owner Reports

When I call YouTube Reporting API reportTypes.list (https://developers.google.com/youtube/reporting/v1/reference/rest/v1/reportTypes/list) method for the channel that I am the owner of, the only report types returned are for Channel Reports (https://developers.google.com/youtube/reporting/v1/reports/channel_reports). What do I need to do to get Content Owner Reports as well? If I need to have Content Owner ID what are the steps for setting it up?
Thank you!

Can I route my mailgun email to S3 bucket and save data there?

I have a requirement where I need to fetch email data and save somewhere. I can route it to my server and save the data there. Is there any feature where the email data can be routed to an S3 Bucket and I save the data there?
As I can see, you need a backend app that recursively fetch your emails using the Mailgun API formatted as json, then you can save these as text files on S3 service that can be queried later by another backend application.
It requires programming and a server infrastructure.
Regards,

Obtain Adobe DPS folio list

Is there any way to get folio list from adobe DPS publishing server to machine with implemented direct entitlement?
Only method which i know right now is to put that information to my database manually.
You can get the folio from the fulfilment server the same way the viewer application does.
Call the URL
http://edge.adobe-dcfs.com/ddp/issueServer/issues?accountId=xxxx&targetDimension=all
using your accountId in the place of xxxx
To get the accountId you need to call this URL http://lighthouse.adobe.com/dps/entitlement and enter your account's login and password there. If you don't want to do that you can open the .ipa file of you iPad app and get the accountId from within the file LibraryConfig.plist. The value is at serviceOptions->fulfillment->loginOptions->accountId.

How to Create email id for each user in Amazon Ec2?

I am running my application in amazon Ec2 with PHP.We are using S3 for storage images and files.Now I want to create the email id for each user those who are successfully register.
When the users send the mail from the another email id to this particular email id with attachment I need to get the files and upload to S3.
I read the SES document.But I didn't get any clue how to do this.Please let me know if you have any ideas.
It sounds to me like you want to parse incoming email for attachments, if so take a look at the imap functions and Mail_mimeDecode, I use a combination of both.

Email Synching into Custom App

How have people intergrated custom CRM type applications with email?
I have a Access 2003 front-end application with a SQL Server 2005 backend. One CRM
part of the application tracks the activity with the customer in a traffic
log table. Sometimes the salesstaff has communication with their customer
using email instead. What do people do to synch this up with an application?
I was thinking about creating a form to enter the initial message, so I
could save it into a table and then have the system generate a email, of
course, this doesn't handle the email communication after the initial email.
Thanks
What you need to do is setup your domain name with a free google apps account. Your sales staff can still use the clients of their choice, but since they are essentially using custom gmail accounts, every single email that they send and receive will be recorded in a nice and neat transactional format in the gmail interface. Since your sales staff is always online, they will always have access to every message they ever sent. If you want to have access to the emails, you can set it up that every single message that gets sent are automatically blind forwarded to your account. Filters can be set up to automatically tag and archive them, so you will not be overwhelmed, but you will still be able to search them. Google Apps will also give you a central contact directory similar to outlook/exchange.
Here are a few options for you:
Use web forms for all communications. When a message is sent out, the only thing it includes is a link back to the site. Responses are sent the same way.
Setup an email alias that your sales staff Cc's when they want their correspondence to be tracked. Your app would periodically read a POP mailbox, and record the traffic. Customers would have to remember to Cc the same email box for the traffic to be remembered.
Establish a single common email box, such as sales#domain.com. All outgoing mail is marked as being from that account, so all replies will go through it. To send mail, sales staff uses a web form. Messages are tagged with a key that associates them with a particular customer. Putting the key in the subject header usually works OK (that's how many support ticket management systems work, for example). Replies from customers keep the tag. Your app then reads an associated POP mailbox, parses out the keys, and stores the email accordingly.