Microsoft Teams apps
Integrate third-party solutions with Teams using Aurinko API. Develop bots and tabs to enhance user experience and access Graph API seamlessly.
Tabs
{ "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": "Office 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 nativeScopes=ChannelMessage.Send \ -d userAccount='primary' \ -d returnUrl='https://static.mydomain.com/msteams\_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/msteams\_auth\_callback.html'{ "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": "Office 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.instance", "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/messagescurl -H 'X-Aurinko-AccountId: 2740' \ -X GET https:/api.aurinko.io/v1/contactscurl -X GET https:/api.aurinko.io/v1/storage/usercurl -X GET https:/api.aurinko.io/v1/storage/organization
Bots (workers)
Last updated
Was this helpful?