Outlook addins
Integrate Outlook with third-party services using add-ins built on JavaScript/HTML, enabling seamless access to emails, meetings, and more.
{ "id": "3df3ce21-07c0-4cec-a8de-ed4c570ee15c", "appId": 1, "email": "[email protected]", "authOrgId": "abcda5bb-1d9f-0514-a4c6-1234502167890", "trustedIdentity": true, "accounts": [ { "id": 2739, "serviceType": "Office365", "type": "primary", "active": true, "daemon": false, "loginString": "[email protected]", "email": "[email protected]", "name": "Addin User", "authUserId": "abcdabcb-ad8d-4bee-bd69-787675478785", "authOrgId": "abcda5bb-1d9f-0514-a4c6-1234502167890", "authObtainedAt": "2021-03-21T16:58:56.823Z" } ] }curl -X GET -G https:/api.aurinko.io/v1/auth/authorize \ -d clientId='{APPLICATION\_ID}' \ -d serviceType='Office365' \ -d scopes='Mail.Read Mail.Send' \ -d userAccount='primary' \ -d returnUrl='https://static.mydomain.com/outlook\_auth\_callback.html'curl -X GET -G https:/api.aurinko.io/v1/auth/authorize \ -d clientId='{APPLICATION\_ID}' \ -d serviceType='{MyCRM}' \ -d userAccount='secondary' \ -d returnUrl='https://static.mydomain.com/outlook\_auth\_callback.html'curl -X GET -G https://api.aurinko.io/v1/user{ "id": "3df3ce21-07c0-4cec-a8de-ed4c570ee15c", "appId": 1, "email": "[email protected]", "authOrgId": "abcda5bb-1d9f-0514-a4c6-1234502167890", "trustedIdentity": true, "accounts": [ { "id": 2739, "serviceType": "Office365", "type": "primary", "active": true, "daemon": false, "loginString": "[email protected]", "email": "[email protected]", "name": "Addin User", "authUserId": "abcdabcb-ad8d-4bee-bd69-787675478785", "authOrgId": "abcda5bb-1d9f-0514-a4c6-1234502167890", "authObtainedAt": "2021-03-21T16:58:56.823Z" }, { "id": 2740, "serviceType": "{MyCRM}", "type": "secondary", "active": true, "daemon": false, "loginString": "[email protected]", "email": "[email protected]", "name": "Crm User", "serverUrl": "https://crm.repfabric.com", "authUserId": "374", "authOrgId": "999", "authObtainedAt": "2021-03-21T17:39:10.513Z" } ] }curl -H 'X-Aurinko-AccountId: 2739' \ \-X GET https:/api.aurinko.io/v1/email/messages curl -H 'X-Aurinko-AccountId: 2740' \ -X GET https:/api.aurinko.io/v1/contacts
Last updated
Was this helpful?