Giter VIP home page Giter VIP logo

4d-netkit's Introduction

4D NetKit

Overview

4D NetKit is a built-in 4D component that allows you to interact with third-party web services and their APIs, such as Microsoft Graph.

Table of contents

Warning: Shared objects are not supported by the 4D NetKit API.

OAuth2Provider

The OAuth2Provider class allows you to request authentication tokens to third-party web services providers in order to use their APIs in your application. This is done in two steps:

  1. Using the New OAuth2 provider component method, you instantiate an object of the OAuth2Provider class that holds authentication information.
  2. You call the OAuth2ProviderObject.getToken() class function to retrieve a token from the web service provider.

Here's a diagram of the authorization process: authorization-flow

This class can be instantiated in two ways:

  • by calling the New OAuth2 provider method
  • by calling the cs.NetKit.OAuth2Provider.new() function

New OAuth2 provider

New OAuth2 provider( paramObj : Object ) : cs.NetKit.OAuth2Provider

Parameters

Parameter Type Description
paramObj Object -> Determines the properties of the object to be returned
Result cs.NetKit.OAuth2Provider <- Object of the OAuth2Provider class

Description

New OAuth2 provider instantiates an object of the OAuth2Provider class.

In paramObj, pass an object that contains authentication information.

The available properties of paramObj are:

Parameter Type Description Can be Null or undefined
name text Name of the provider. Currently, the only provider available is "Microsoft". No
permission text
  • "signedIn": Azure AD will sign in the user and ensure they gave their consent for the permissions your app requests (opens a web browser).
  • "service": the app calls Microsoft Graph with its own identity (access without a user).
No
clientId text The client ID assigned to the app by the registration portal. No
redirectURI text (Not used in service mode) The redirect_uri of your app, the location where the authorization server sends the user once the app has been successfully authorized. When you call the .getToken() class function, a web server included in 4D NetKit is started on the port specified in this parameter to intercept the provider's authorization response. No in signedIn mode, Yes in service mode
scope text or collection Text: A space-separated list of the Microsoft Graph permissions that you want the user to consent to.
Collection: Collection of Microsoft Graph permissions.
No
tenant text The {tenant} value in the path of the request can be used to control who can sign into the application. The allowed values are:
  • "common" for both Microsoft accounts and work or school accounts
  • "organizations" for work or school accounts only
  • "consumers" for Microsoft accounts only
  • tenant identifiers such as tenant ID or domain name.
Default is "common".
Yes
authenticateURI text Uri used to do the Authorization request. By default: "https://login.microsoftonline.com/{tenant}/oauth2/v2.0/authorize". Yes
tokenURI text Uri used to request an access token. By default: "https://login.microsoftonline.com/{tenant}/oauth2/v2.0/token". Yes
clientSecret text The application secret that you created for your app in the app registration portal. Required for web apps. Yes
token object If this property exists, the getToken() function uses this token object to calculate which request must be sent. It is automatically updated with the token received by the getToken() function. Yes
timeout real Waiting time in seconds (by default 120s). Yes

Returned object

The returned object's properties correspond to those of the paramObj object passed as a parameter.

OAuth2ProviderObject.getToken()

OAuth2ProviderObject.getToken() : Object

Parameter Type Description
Result Object <- Object that holds information on the token retrieved

Description

.getToken() returns an object that contains a token property (as defined by the IETF), as well as optional additional information returned by the server:

Property Object properties Type Description
token Object Token returned
expires_in Text How long the access token is valid (in seconds).
access_token Ttext The requested access token.
refresh_token Text Your app can use this token to acquire additional access tokens after the current access token expires. Refresh tokens are long-lived, and can be used to retain access to resources for extended periods of time. Available only if the value of the permission property is "signedIn".
token_type Text Indicates the token type value. The only token type that Azure AD supports is "Bearer".
scope Text A space separated list of the Microsoft Graph permissions that the access_token is valid for.
tokenExpiration Text Timestamp (ISO 8601 UTC) that indicates the expiration time of the token

If the value of token is empty, the command sends a request for a new token.

If the token has expired:

  • If the token object has the refresh_token property, the command sends a new request to refresh the token and returns it.
  • If the token object does not have the refresh_token property, the command automatically sends a request for a new token.

When requesting access on behalf of a user ("signedIn" mode) the command opens a web browser to request authorization.

In "signedIn" mode, when .getToken() is called, a web server included in 4D NetKit starts automatically on the port specified in the redirectURI parameter to intercept the provider's authorization response and display it in the browser.

Office365

The Office365 class allows you to call the Microsoft Graph API to:

  • get information from Office365 applications, such as user information
  • create, move or send emails

This can be done after a valid token request, (see OAuth2Provider object).

The Office365 class can be instantiated in two ways:

  • by calling the New Office365 provider method
  • by calling the cs.NetKit.Office365.new() function

New Office365 provider

New Office365 provider( paramObj : Object { ; options : Object } ) : cs.NetKit.Office365

Parameters

Parameter Type Description
paramObj cs.NetKit.OAuth2Provider -> Object of the OAuth2Provider class
options Object -> Additional options
Result cs.NetKit.Office365 <- Object of the Office365 class

Description

New Office365 provider instantiates an object of the Office365 class.

In paramObj, pass an OAuth2Provider object.

In options, you can pass an object that specifies the following options:

Property Type Description
mailType Text Indicates the Mail type to use to send and receive emails. Possible types are:
  • "MIME"
  • "JMAP"
  • "Microsoft" (default)

Returned object

The returned Office365 object contains the following properties:

Property Type Description
mail Object Email handling object
send() Function Sends the emails
type Text (read-only) Mail type used to send and receive emails. Default is "Microsoft", can bet set using the mailType option
userId Text User identifier, used to identify the user in Service mode. Can be the id or the userPrincipalName

Example

To create the OAuth2 connection object and an Office365 object:

var $oAuth2: cs.NetKit.OAuth2Provider
var $office365 : cs.NetKit.Office365

$oAuth2:=New OAuth2 provider($param)
$office365:=New Office365 provider($oAuth2;New object("mailType"; "Microsoft"))

Office365.mail.append()

Office365.mail.append( email : Object ; folderId : Text) : Object

Parameters

Parameter Type Description
email Object -> Microsoft message object to append
folderId Text -> Id of the destination folder. Can be a folder id or a Well-known folder name.
Result Object <- Status object

Description

Office365.mail.append() creates a draft email in the folderId folder.

In email, pass the email to create. It must be of the Microsoft mail object type.

Returned object

The method returns a status object.

Permissions

One of the following permissions is required to call this API. For more information, including how to choose permissions, see the Permissions section on the Microsoft documentation.

Permission type Permissions (from least to most privileged)
Delegated (work or school account) Mail.ReadWrite
Delegated (personal Microsoft account) Mail.ReadWrite
Application Mail.ReadWrite

Example

$status:=$office365.mail.append($draft; $folder.id)

Office365.mail.copy()

Office365.mail.copy( mailId : Text ; folderId : Text) : Object

Parameters

Parameter Type Description
mailId Text -> Id of the mail to copy
folderId Text -> Id of the destination folder. Can be a folder id or a Well-known folder name.
Result Object <- Status object

Description

Office365.mail.copy() copies the mailId email to the folderId folder within the user's mailbox.

Returned object

The method returns a status object.

Permissions

One of the following permissions is required to call this API. For more information, including how to choose permissions, see the Permissions section on the Microsoft documentation.

Permission type Permissions (from least to most privileged)
Delegated (work or school account) Mail.ReadWrite
Delegated (personal Microsoft account) Mail.ReadWrite
Application Mail.ReadWrite

Example

To copy an email from a folder to another:

$status:=$office365.mail.copy($mailId; $folderId)

Office365.mail.createFolder()

Office365.mail.createFolder( name : Text { ; isHidden : Boolean { ; parentFolderId : Text } }) : Object

Parameters

Parameter Type Description
name Text -> Display name of the new folder
isHidden Boolean -> True to create a hidden folder (Default is False)
parentFolderId Text -> ID of the parent folder to get. Can be a folder id or a Well-known folder name.
Result Object <- Status object

Office365.mail.getFolder() creates a new folder named name and returns its ID in the status object.

By default, the new folder is not hidden. Pass True in the isHidden parameter to create a hidden folder. This property cannot be changed afterwards. Find more information in Hidden mail folders on the Microsoft web site.

By default, the new folder is created at the root folder of the mailbox. If you want to create it within an existing folder, pass its id in the parentFolderId parameter.

Permissions

One of the following permissions is required to call this API. For more information, including how to choose permissions, see the Permissions section on the Microsoft documentation.

Permission type Permissions (from least to most privileged)
Delegated (work or school account) Mail.ReadWrite
Delegated (personal Microsoft account) Mail.ReadWrite
Application Mail.ReadWrite

Returned object

The method returns a status object.

Example

You want to create a "Backup" mail folder at the root of your mailbox and move an email to this folder:

// Creates a new folder on the root
$status:=$office365.mail.createFolder("Backup")
If($status.success=True)
	$folderId:=$status.id
		// Moves your email in the new folder
	$status:=$office365.mail.move($mailId; $folderId)
End if

Office365.mail.delete()

Office365.mail.delete( mailId : Text ) : Object

Parameters

Parameter Type Description
mailId Text -> Id of the mail to delete
Result Object <- Status object

Description

Office365.mail.delete() deletes the mailId email.

Permissions

One of the following permissions is required to call this API. For more information, including how to choose permissions, see the Permissions section on the Microsoft documentation.

Permission type Permissions (from least to most privileged)
Delegated (work or school account) Mail.ReadWrite
Delegated (personal Microsoft account) Mail.ReadWrite
Application Mail.ReadWrite

Returned object

The method returns a status object.

Note: You may not be able to delete items in the recoverable items deletions folder (for more information, see the Microsoft's documentation website).

Example

You want to delete all mails in the $mails collection:

For each($mail;$mails)
	$office365.mail.delete($mail.id)
End for each

Office365.mail.deleteFolder()

Office365.mail.deleteFolder( folderId : Text ) : Object

Parameters

Parameter Type Description
folderId Text -> ID of the folder to delete. Can be a folder id or a Well-known folder name if one exists.
Result Object <- Status object

Description

Office365.mail.deleteFolder() deletes the folderId mail folder.

Permissions

One of the following permissions is required to call this API. For more information, including how to choose permissions, see the Permissions section on the Microsoft documentation.

Permission type Permissions (from least to most privileged)
Delegated (work or school account) Mail.ReadWrite
Delegated (personal Microsoft account) Mail.ReadWrite
Application Mail.ReadWrite

Returned object

The method returns a status object.

Example

$status:=$office365.mail.deleteFolder($folderId)

Office365.mail.getFolder()

Office365.mail.getFolder( folderId : Text ) : Object

Parameters

Parameter Type Description
folderId Text -> ID of the folder to get. Can be a folder ID or a Well-known folder name.
Result Object <- mailFolder object

Office365.mail.getFolder() allows you to get a mailFolder object from its folderId.

Permissions

One of the following permissions is required to call this API. For more information, including how to choose permissions, see the Permissions section on the Microsoft documentation.

Permission type Permissions (from least to most privileged)
Delegated (work or school account) Mail.ReadBasic, Mail.Read, Mail.ReadWrite
Delegated (personal Microsoft account) Mail.ReadBasic, Mail.Read, Mail.ReadWrite
Application Mail.ReadBasic.All, Mail.Read, Mail.ReadWrite

mailFolder object

The method returns a mailFolder object containing the following properties (additional information can be returned by the server):

Property Type Description
childFolderCount Integer Number of immediate child mailFolders in the current mailFolder
displayName Text mailFolder's display name
id Text mailFolder's unique identifier
isHidden Boolean Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders on the Microsoft web site.
parentFolderId Text Unique identifier for the mailFolder's parent mailFolder.
totalItemCount Integer Number of items in the mailFolder.
unreadItemCount Integer Number of items in the mailFolder marked as unread.

Office365.mail.getFolderList()

Office365.mail.getFolderList( options : Object ) : Object

Parameters

Parameter Type Description
options Object -> Description of folders to get
Result Object <- Status object that contains folder list and other information

Office365.mail.getFolderList() allows you to get a mail folder collection of the signed-in user.

In options, pass an object to define the folders to get. The available properties for that object are (all properties are optional):

Property Type Description
folderId text Can be a folder id or a Well-known folder name.
  • If it is a parent folder id, get the folder collection under the specified folder (children folders)
  • If the property is omitted or its value is "", get the mail folder collection directly under the root folder.
  • search text Restricts the results of a request to match a search criterion. The search syntax rules are available on Microsoft's documentation website.
    filter text Allows retrieving just a subset of folders. See Microsoft's documentation on filter parameter.
    select text Set of properties to retrieve. Each property must be separated by a comma (,).
    top integer Defines the page size for a request. Maximum value is 999. If top is not defined, default value is applied (10). When a result set spans multiple pages, you can use the .next() function to ask for the next page. See Microsoft's documentation on paging for more information.
    orderBy text Defines how returned items are ordered. Default is ascending order. Syntax: "fieldname asc" or "fieldname desc" (replace "fieldname" with the name of the field to be arranged).
    includeHiddenFolders boolean True to include hidden folders in the response. False (default) to not return hidden folders.

    Permissions

    One of the following permissions is required to call this API. For more information, including how to choose permissions, see the Permissions section on the Microsoft documentation.

    Permission type Permissions (from least to most privileged)
    Delegated (work or school account) Mail.ReadBasic, Mail.Read, Mail.ReadWrite
    Delegated (personal Microsoft account) Mail.ReadBasic, Mail.Read, Mail.ReadWrite
    Application Mail.ReadBasic.All, Mail.Read, Mail.ReadWrite

    Returned object

    The method returns a status object containing the following properties:

    Property Type Description
    errors Collection Collection of 4D error items (not returned if an Office 365 server response is received)
    [].errcode Integer 4D error code number
    [].message Text Description of the 4D error
    [].componentSignature Text Signature of the internal component that returned the error
    isLastPage Boolean True if the last page is reached
    page Integer Folder information page number. Starts at 1. By default, each page holds 10 results. Page size limit can be set in the top option.
    next() Function Function that updates the folders collection with the next mail information page and increases the page property by 1. Returns a boolean value:
    • If a next page is successfully loaded, returns True
    • If no next page is returned, the folders collection is not updated and False is returned
    previous() Function Function that updates the folders collection with the previous folder information page and decreases the page property by 1. Returns a boolean value:
    • If a previous page is successfully loaded, returns True
    • If no previous page is returned, the folders collection is not updated and False is returned
    statusText Text Status message returned by the Office 365 server, or last error returned in the 4D error stack
    success Boolean True if the Office365.mail.getFolderList() call is successful, False otherwise
    folders Collection Collection of mailFolder objects with information on folders.
    [].childFolderCount Integer The number of immediate child mailFolders in the current mailFolder.
    [].displayName Text The mailFolder's display name.
    [].id Text The mailFolder's unique identifier.
    [].isHidden Boolean Indicates whether the mailFolder is hidden. This property can be set only when creating the folder. Find more information in Hidden mail folders.
    [].parentFolderId Text The unique identifier for the mailFolder's parent mailFolder.
    [].totalItemCount Integer The number of items in the mailFolder.
    [].unreadItemCount Integer The number of items in the mailFolder marked as unread.

    The method returns an empty collection in the folders property if:

    • no folders are found at the defined location
    • an error is thrown

    Example

    You want to :

    //get the mail folder collection under the root folder (in $result.folders)
    var $result : Object
    $result:=$office365.mail.getFolderList()
    
    //get the mail subfolder collection under the 9th folder
    var $subfolders : Collection
    $subfolders:=$office365.mail.getFolderList($result.folders[8].id)

    Office365.mail.getMail()

    Office365.mail.getMail( mailId : Text { ; options : Object } ) : Object
    Office365.mail.getMail( mailId : Text { ; options : Object } ) : Blob

    Parameters

    Parameter Type Description
    mailId Text -> Id of the mail to get
    options Object -> Format options for the returned mail object
    mailType Text Type of the mail object to return. Available values:
  • "MIME"
  • "JMAP"
  • "Microsoft" (default)
  • By default if omitted, the same format as the mail.type property is used
    contentType Text Format of the body and uniqueBody properties to be returned. Available values:
  • "text"
  • "html" (default)
  • Result Blob | Object <- Downloaded mail

    Office365.mail.getMail() allows you to get a single mail from its mailId.

    By default, the mail is returned with its original format, as defined in the mail.type property of the provider. However, you can convert it to any type using the mailType property of the options parameter.

    You can also select the preferred format of the body and uniqueBody properties of the returned mail using the contentType property of the options parameter.

    The data type of the function result depends on the mail type:

    Mail type Function result
    MIME Blob
    JMAP Object
    Microsoft Object

    If an error occurs, the function returns Null and an error is generated.

    See also Microsoft's documentation website.

    Permissions

    One of the following permissions is required to call this API. For more information, including how to choose permissions, see the Permissions section on the Microsoft documentation.

    Permission type Permissions (from least to most privileged)
    Delegated (work or school account) Mail.ReadBasic, Mail.Read
    Delegated (personal Microsoft account) Mail.ReadBasic, Mail.Read
    Application Mail.ReadBasic.All, Mail.Read

    Example

    Download a specific email:

    $mail:=$office.mail.getMail($mailId)

    Office365.mail.getMails()

    Office365.mail.getMails( options : Object ) : Object

    Parameters

    Parameter Type Description
    options Object -> Description of mails to get
    Result Object <- Status object that contains mail list and other information

    Office365.mail.getMails() allows you to get messages in the signed-in user's mailbox (for detailed information, please refer to the Microsoft's documentation website).

    This method returns mail bodies in HTML format only.

    In options, pass an object to define the mails to get. The available properties for that object are (all properties are optional):

    Property Type Description
    folderId text To get messages in a specific folder. Can be a folder id or a Well-known folder name. If the destination folder is not present or empty, get all the messages in a user's mailbox.
    search text Restricts the results of a request to match a search criterion. The search syntax rules are available on Microsoft's documentation website.
    filter text Allows retrieving just a subset of mails. See Microsoft's documentation on filter parameter.
    select text Set of properties to retrieve. Each property must be separated by a comma (,).
    top integer Defines the page size for a request. Maximum value is 999. If top is not defined, default value is applied (10). When a result set spans multiple pages, you can use the .next() function to ask for the next page. See Microsoft's documentation on paging for more information.
    orderBy text Defines how returned items are ordered. Default is ascending order. Syntax: "fieldname asc" or "fieldname desc" (replace "fieldname" with the name of the field to be arranged).

    Returned object

    The method returns a status object containing the following properties:

    Property Type Description
    errors Collection Collection of 4D error items (not returned if an Office 365 server response is received)
    [].errcode Integer 4D error code number
    [].message Text Description of the 4D error
    [].componentSignature Text Signature of the internal component that returned the error
    isLastPage Boolean True if the last page is reached
    page Integer Mail information page number. Starts at 1. By default, each page holds 10 results. Page size limit can be set in the top option.
    next() Function Function that updates the mails collection with the next mail information page and increases the page property by 1. Returns a boolean value:
    • If a next page is successfully loaded, returns True
    • If no next page is returned, the mails collection is not updated and False is returned
    previous() Function Function that updates the folders collection with the previous mail information page and decreases the page property by 1. Returns a boolean value:
    • If a previous page is successfully loaded, returns True
    • If no previous page is returned, the mails collection is not updated and False is returned
    statusText Text Status message returned by the Office 365 server, or last error returned in the 4D error stack
    success Boolean True if the Office365.mail.getFolderList() call is successful, False otherwise
    mails Collection Collection of Microsoft mail objects. If no mail is returned, the collection is empty

    Permissions

    One of the following permissions is required to call this API. For more information, including how to choose permissions, see the Permissions section on the Microsoft documentation.

    Permission type Permissions (from least to most privileged)
    Delegated (work or school account) Mail.ReadBasic, Mail.Read, Mail.ReadWrite
    Delegated (personal Microsoft account) Mail.ReadBasic, Mail.Read, Mail.ReadWrite
    Application Mail.ReadBasic.All, Mail.Read, Mail.ReadWrite

    Example

    You want to retrieve all the mails present in the Inbox folder, using its well-known folder name:

    $param:=new object
    $param.folderId:="inbox"
    
    $mails:=$office365.mail.getMails($param)

    Office365.mail.move()

    Office365.mail.move( mailId : Text ; folderId : Text) : Object

    Parameters

    Parameter Type Description
    mailId Text -> Id of the mail to move
    folderId Text -> Id of the destination folder. Can be a folder id or a Well-known folder name.
    Result Object <- Status object

    Description

    Office365.mail.move() moves the mailId email to the folderId folder. It actually creates a new copy of the email in the destination folder and removes the original email from its source folder.

    Returned object

    The method returns a status object.

    Permissions

    One of the following permissions is required to call this API. For more information, including how to choose permissions, see the Permissions section on the Microsoft documentation.

    Permission type Permissions (from least to most privileged)
    Delegated (work or school account) Mail.ReadWrite
    Delegated (personal Microsoft account) Mail.ReadWrite
    Application Mail.ReadWrite

    Example

    To move an email from a folder to another:

    $status:=$office365.mail.move($mailId; $folderId)

    Office365.mail.renameFolder()

    Office365.mail.renameFolder( folderId : Text ; name : Text ) : Object

    Parameters

    Parameter Type Description
    folderId Text -> ID of the folder to rename
    name Text -> New display name for the folder
    Result Object <- Status object

    Description

    Office365.mail.renameFolder() renames the folderId mail folder with the provided name.

    Note that the renamed folder ID is different from the folderId. You can get it in the returned status object.

    Permissions

    One of the following permissions is required to call this API. For more information, including how to choose permissions, see the Permissions section on the Microsoft documentation.

    Permission type Permissions (from least to most privileged)
    Delegated (work or school account) Mail.ReadWrite
    Delegated (personal Microsoft account) Mail.ReadWrite
    Application Mail.ReadWrite

    Returned object

    The method returns a status object.

    Example

    You want to rename the the "Backup" folder to "Backup_old":

    $status:=$office365.mail.renameFolder($folderId; "Backup_old")

    Office365.mail.reply()

    Office365.mail.reply( reply : Object ; mailId : Text { ; replyAll : Boolean } ) : Object

    Parameters

    Parameter Type Description
    reply Object -> reply object
    message Text | Blob | Object -> Microsoft message (object) or JMAP (object) or MIME (Blob / Text) that contains the reponse
    comment Text -> (only available with Microsoft message object or no message) Message used as body to reply to the email when present. You must specify either a comment or the body property of the message parameter; specifying both will return an HTTP 400 Bad Request error.
    mailId Text -> Id of the mail to which you reply
    replyAll Boolean -> True to reply to all recipients of the message. Default=False
    Result Object <- Status object

    Description

    Office365.mail.reply() replies to the sender of mailId message and, optionnally, to all recipients of the message.

    Note: Some mails, like drafts, cannot be replied.

    If you pass False in replyAll and if the original message specifies a recipient in the replyTo property, the reply is sent to the recipients in replyTo and not to the recipient in the from property.

    Returned object

    The method returns a status object

    Permissions

    One of the following permissions is required to call this API. For more information, including how to choose permissions, see the Permissions section on the Microsoft documentation.

    Permission type Permissions (from least to most privileged)
    Delegated (work or school account) Mail.Send
    Delegated (personal Microsoft account) Mail.Send
    Application Mail.Send

    Example

    To reply to an email and create a conversation:

    $reply:=New object
    // Text that will be send as reply
    $reply.comment:="Thank you for your message"
    $status:=$office365.mail.reply($reply; $mails.mailId)

    Office365.mail.send()

    Office365.mail.send( email : Text ) : Object
    Office365.mail.send( email : Object ) : Object
    Office365.mail.send( email : Blob ) : Object

    Parameters

    Parameter Type Description
    email Text | Blob | Object -> Email to be sent
    Result Object <- Status object

    Description

    Office365.mail.send() sends an email using the MIME or JSON formats.

    In email, pass the email to be sent. Possible types:

    The data type passed in email must be compatible with the Office365.mail.type property. In the following example, since the mail type is Microsoft, $email must be an object. For the list of available properties, see Microsoft mail object's properties:

    $Office365:=New Office365 provider($token; New object("mailType"; "Microsoft"))
    $status:=$Office365.mail.send($email)

    To avoid authentication errors, make sure your application asks for permission to send emails through the Microsoft Graph API. See Permissions.

    Returned object

    The method returns a status object.

    Well-known folder names

    Outlook creates certain folders for users by default. Instead of using the corresponding folder id value, for convenience, you can use the well-known folder name when accessing these folders. Well-known names work regardless of the locale of the user's mailbox. For example, you can get the Drafts folder using its well-known name "draft". For more information, please refer to the Microsoft Office documentation.

    "Microsoft" mail object properties

    When you send an email with the "Microsoft" mail type, you must pass an object to Office365.mail.send(). The available properties for that object are:

    Property Type Description
    attachments attachment collection The attachments for the email.
    bccRecipients recipient collection The Bcc: recipients for the message.
    body itemBody object The body of the message. It can be in HTML or text format.
    ccRecipients recipient collection The Cc: recipients for the message.
    flag followup flag object The flag value that indicates the status, start date, due date, or completion date for the message.
    from recipient object The owner of the mailbox from which the message is sent. In most cases, this value is the same as the sender property, except for sharing or delegation scenarios. The value must correspond to the actual mailbox used.
    id Text Unique identifier for the message (note that this value may change if a message is moved or altered).
    importance Text The importance of the message. The possible values are: low, normal, and high.
    internetMessageHeaders internetMessageHeader collection A collection of message headers defined by RFC5322. The set includes message headers indicating the network path taken by a message from the sender to the recipient.
    isDeliveryReceiptRequested Boolean Indicates whether a delivery receipt is requested for the message.
    isReadReceiptRequested Boolean Indicates whether a read receipt is requested for the message.
    replyTo recipient collection The email addresses to use when replying.
    sender recipient object The account that is actually used to generate the message. In most cases, this value is the same as the from property. You can set this property to a different value when sending a message from a shared mailbox, for a shared calendar, or as a delegate. In any case, the value must correspond to the actual mailbox used. Find out more about setting the from and sender properties of a message.
    subject Text The subject of the message.
    toRecipients recipient collection The To: recipients for the message.

    Attachment object

    Property Type Description
    @odata.type Text always "#microsoft.graph.fileAttachment" (note that the property name requires that you use the [""] syntax)
    contentBytes Text The base64-encoded contents of the file (only to send mails)
    contentId Text The ID of the attachment in the Exchange store.
    contentType Text The content type of the attachment.
    id Text The attachment ID. (cid)
    isInline Boolean Set to true if this is an inline attachment.
    name Text The name representing the text that is displayed below the icon representing the embedded attachment.This does not need to be the actual file name.
    size Number The size in bytes of the attachment.
    getContent() Function Returns the contents of the attachment object in a 4D.Blob object.

    itemBody object

    Property Type Description Can be null of undefined
    content Text The content of the item. No
    contentType Text The type of the content. Possible values are "text" and "html" No

    recipient object

    Property Type Description Can be null of undefined
    emailAddress Object Yes
    address Text The email address of the person or entity. No
    name Text The display name of the person or entity. Yes

    internetMessageHeader object

    Property Type Description Can be null of undefined
    name Text Represents the key in a key-value pair. No
    value Text The value in a key-value pair. No

    followup flag object

    Property Type Description
    dueDateTime dateTime | TimeZone The date and time that the follow up is to be finished. Note: To set the due date, you must also specify the startDateTime; otherwise, you will get a 400 Bad Request response.
    flagStatus Text The status for follow-up for an item. Possible values are "notFlagged", "complete", and "flagged".
    startDateTime dateTime | TimeZone The date and time that the follow-up is to begin.

    dateTime and TimeZone

    Property Type Description
    dateTime Text A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000).
    timeZone Text Represents a time zone, for example, "Pacific Standard Time". See below for more possible values.

    In general, the timeZone property can be set to any of the time zones currently supported by Windows, as well as the additional time zones supported by the calendar API:

    Example: Create an email with a file attachment and send it

    Send an email with an attachment, on behalf of a Microsoft 365 user:

    var $oAuth2 : cs.NetKit.OAuth2Provider
    var $token; $param; $email; $status : Object
    
    // Set up authentication
    $param:=New object()
    $param.name:="Microsoft"
    $param.permission:="signedIn"
    $param.clientId:="your-client-id" // Replace with your client ID
    $param.redirectURI:="http://127.0.0.1:50993/authorize/"
    // Ask permission to send emails on behalf of the Microsoft user
    $param.scope:="https://graph.microsoft.com/Mail.Send"  
    
    $oAuth2:=New OAuth2 provider($param)
    
    $token:=$oAuth2.getToken()
    
    // Create the email, specify the sender and the recipient
    $email:=New object()
    $email.from:=New object("emailAddress"; New object("address"; "[email protected]")) // Replace with sender's email
    $email.toRecipients:=New collection(New object("emailAddress"; New object("address"; "[email protected]")))
    $email.body:=New object()
    $email.body.content:="Hello, World!"
    $email.body.contentType:="html"
    $email.subject:="Hello, World!"
    
    // Create a text file and attach it to the email
    var $attachment : Object
    var $attachmentText : Text
    
    $attachmentText:="Simple text file"
    BASE64 ENCODE($attachmentText)
    $attachment:=New object
    $attachment["@odata.type"]:="#microsoft.graph.fileAttachment"
    $attachment.name:="attachment.txt"
    $attachment.contentBytes:=$attachmentText
    $email.attachments:=New collection($attachment)
    
    // Send the email
    $Office365:=New Office365 provider($token; New object("mailType"; "Microsoft"))
    $status:=$Office365.mail.send($email)

    Status object

    Several Office368.mail functions return a standard **status object**, containing the following properties:

    Property Type Description
    success Boolean True if the operation was successful
    statusText Text Status message returned by the server or last error returned by the 4D error stack
    errors Collection Collection of errors. Not returned if the server returns a statusText
    id Text
  • copy() and move(): returned id of the mail.
  • createFolder() and renameFolder(): returned id of the folder
  • Basically, you can test the success and statusText properties of this object to know if the function was correctly executed.

    Error handling

    When an error occurs during the execution of an Office368.mail function:

    • if the function returns a **status object**, the error is handled by the status object and no error is thrown,
    • if the function does not return a status object, an error is thrown that you can intercept with a project method installed with ON ERR CALL.

    Office365.user.get()

    Office365.user.get( id : Text { ; select : Text }) : Object
    Office365.user.get( userPrincipalName : Text { ; select : Text }) : Object

    Parameters

    Parameter Type Description
    id Text -> Unique identifier of the user to search for
    userPrincipalName Text -> User principal name (UPN) of the user to search for
    select Text -> Set of properties to be returned
    Result Object <- Object holding information on the user

    Description

    Office365.user.get() returns information on the user whose ID matches the id parameter, or whose User Principal Name (UPN) matches the userPrincipalName parameter.

    The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, it should correspond to the user's email name.

    If the ID or UPN is not found or connection fails, the command returns an object with Null as a value and throws an error.

    In select, you can pass a string that contains a specific set of properties you want to retrieve. Each property must be separated by a comma (,). If the select parameter is omitted, the function returns an object with a predefined set of properties (see below).

    The list of available properties is available on Microsoft's documentation website.

    Returned object

    By default, if the select parameter is omitted, the command returns an object with the following properties:

    Property Type Description
    id Text Unique identifier for the user
    businessPhones Collection The user's phone numbers.
    displayName Text Name displayed in the address book for the user.
    givenName Text The user's first name.
    jobTitle Text The user's job title.
    mail Text The user's email address.
    mobilePhone Text The user's cellphone number.
    officeLocation Text The user's physical office location.
    preferredLanguage Text The user's language of preference.
    surname Text The user's last name.
    userPrincipalName Text The user's principal name.

    Otherwise, the object contains the properties specified in the select parameter.

    For more details on user information, see Microsoft's documentation website.

    Office365.user.getCurrent()

    Office365.user.getCurrent({select : Text}) : Object

    Description

    Office365.user.getCurrent() returns information on the current user. In this case, it requires a signed-in user, and therefore a delegated permission.

    The command returns a Null object if the session is not a sign-in session.

    In select, pass a string that contains a set of properties you want to retrieve. Each property must be separated by a comma (,).

    By default, if the select parameter is not defined, the command returns an object with a default set of properties (see the property table).

    Example

    To retrieve information from the current user:

    var $userInfo; $params : Object
    var $oAuth2 : cs.NetKit.OAuth2Provider
    var $Office365 : cs.NetKit.Office365
    
    // Set up parameters: 
    $params:=New object
    $params.name:="Microsoft"
    $params.permission:="signedIn"
    $params.clientId:="your-client-id" // Replace with your Microsoft identity platform client ID
    $params.redirectURI:="http://127.0.0.1:50993/authorize/"
    $param.scope:="https://graph.microsoft.com/.default"
    
    $oAuth2:=New Oauth2 provider($params) //Creates an OAuth2Provider Object
    
    $Office365:=New Office365 provider($oAuth2) // Creates an Office365 object
    
    // Return the properties specified in the parameter.
    $userInfo:=$Office365.user.getCurrent("id,userPrincipalName,\
    principalName,displayName,givenName,mail") 

    Office365.user.list()

    Office365.user.list({options: Object}) : Object

    Parameters

    Parameter Type Description
    options Object -> Additional options for the search
    result Object <- Object holding a collection of users and additional info on the request

    Description

    Office365.user.list() returns a list of Office365 users.

    In options, you can pass an object to specify additional search options. The following table groups the available search options:

    Property Type Description
    search Text Restricts the results of a request to match a search criterion. The search syntax rules are available on Microsoft's documentation website.
    filter Text Allows retrieving just a subset of users. See Microsoft's documentation on filter parameter.
    select Text Set of properties to retrieve. Each property must be separated by a comma (,). By default, if select is not defined, the returned user objects have a default set of properties
    top Integer Defines the page size for a request. Maximum value is 999. If top is not defined, the default value is applied (100). When a result set spans multiple pages, you can use the .next() function to ask for the next page. See Microsoft's documentation on paging for more information.
    orderBy Text Defines how the returned items are ordered. By default, they are arranged in ascending order. The syntax is "fieldname asc" or "fieldname desc". Replace "fieldname" with the name of the field to be arranged.

    Returned object

    The returned object holds a collection of users as well as status properties and functions that allow you to navigate between different pages of results.

    By default, each user object in the collection has the default set of properties listed in the Office365.user.get() function. This set of properties can be customized using the select parameter.

    Property Type Description
    errors Collection Collection of 4D error items (not returned if an Office 365 server response is received):
    • [].errcode is the 4D error code number
    • [].message is a description of the 4D error
    • [].componentSignature is the signature of the internal component that returned the error
    isLastPage Boolean True if the last page is reached
    page Integer User information page number. Starts at 1. By default, each page holds 100 results. Page size limit can be set in the top option.
    next() Function Function that updates the users collection with the next user information page and increases the page property by 1. Returns a boolean value:
    • If a next page is successfully loaded, returns True
    • If no next page is returned, the users collection is not updated and False is returned
    previous() Function Function that updates the users collection with the previous user information page and decreases the page property by 1. Returns a boolean value:
    • If a previous page is successfully loaded, returns True
    • If no previous page is returned, the users collection is not updated and False is returned
    statusText Text Status message returned by the Office 365 server, or last error returned in the 4D error stack
    success Boolean True if the Office365.user.list() operation is successful, False otherwise
    users Collection Collection of objects with information on users.

    Example

    var $oAuth2 : cs.NetKit.OAuth2Provider
    $Office365 : cs.NetKit.Office365
    $userInfo; $params; $userList; $userList2; $userList3; $userList4 : Object
    var $col : Collection
    
    // Set up parameters: 
    $params:=New object
    $params.name:="Microsoft"
    $params.permission:="signedIn"
    $params.clientId:="your-client-id" // Replace with your Microsoft identity platform client ID
    $params.redirectURI:="http://127.0.0.1:50993/authorize/"
    $params.scope:="https://graph.microsoft.com/.default"
    
    // Create an OAuth2Provider Object
    $oAuth2:=New OAuth2 provider($params) 
    
    // Create an Office365 object
    $Office365:=New Office365 provider($oAuth2) 
    
    // Return a list with the first 100 users
    $informationList1:=$Office365.user.list() 
    
    // Return a list of users whose displayName is Jean
    $userList2:=$Office365.user.list(New object("filter"; "startswith(displayName,'Jean')"))
    
    // return a list of users whose display names contain "F" and arrange it in descending order.
    $userList3:=$Office365.user.list(New object("search"; "\"displayName:F\""; "orderBy"; "displayName desc"; "select"; "displayName"))
    
    // Create a list filled with all the userPrincipalName 
    $userList4:=$Office365.user.list(New object("select"; "userPrincipalName"))
    $col:=New collection
    Repeat 
        $col.combine($userList4.users)
    Until (Not($userList4.next()))

    Tutorials

    Authenticate to the Microsoft Graph API in service mode

    Objectives

    Establish a connection to the Microsoft Graph API in service mode.

    Prerequisites

    • You have registered an application with the Microsoft identity platform and obtained your application ID (also called client ID) and client secret.

    Here, the term "application" does not refer to an application built in 4D. It refers to an entry point you create on the Azure portal. You use the generated client ID to tell your 4D application to trust the Microsoft identity platform.

    Steps

    Once you have your client ID and client secret, you're ready to establish a connection to your Azure application.

    1. Open your 4D application, create a method and insert the following code:
    var $oAuth2 : cs.NetKit.OAuth2Provider
    var $token : Object
    
    $param:=New object()
    $param.name:="Microsoft"
    $param.permission:="service"
    
    $param.clientId:="your-client-id" // Replace with your Microsoft identity platform client ID
    $param.clientSecret:="your-client-secret" // Replace with your client secret
    $param.tenant:="your-tenant-id" // Replace with your tenant ID
    $param.tokenURI:="https://login.microsoftonline.com/your-tenant-id/oauth2/v2.0/token/" //Replace ID
    $param.scope:="https://graph.microsoft.com/.default"
    
    $oAuth2:=New OAuth2 provider($param)
    
    $token:=$oAuth2.getToken()
    1. Execute the method to establish the connection.

    (Archived) Authenticate to the Microsoft Graph API in signedIn mode and send an email with SMTP

    This tutorial has been archived. We recommend using the Office365.mail.send() method to send emails.

    Objectives

    Establish a connection to the Microsoft Graph API in signedIn mode, and send an email using the SMTP Transporter class.

    In this example, we get access on behalf of a user.

    Prerequisites

    Here, the term "application" does not refer to an application built in 4D. It refers to an entry point you create on the Azure portal. You use the generated client ID to tell your 4D application to trust the Microsoft identity platform.

    • You have a Microsoft e-mail account. For example, you signed up for an e-mail account with Microsoft's webmail services designated domains (@hotmail.com, @outlook.com, etc.).

    Steps

    Once you have your client ID, you're ready to establish a connection to your Azure application and send an email:

    1. Open your 4D application, create a method and insert the following code:
    var $token; $param; $email : Object
    var $oAuth2 : cs.NetKit.OAuth2Provider
    var $address : Text
    
    // Configure authentication
    
    
    $param:=New object
    $param.name:="Microsoft"
    $param.permission:="signedIn"
    $param.clientId:="your-client-id" // Replace with your Microsoft identity platform client ID
    $param.redirectURI:="http://127.0.0.1:50993/authorize/"
    $param.scope:="https://outlook.office.com/SMTP.Send" // Get consent for sending an smtp email
    
    // Instantiate an object of the OAuth2Provider class
    $oAuth2:=New OAuth2 provider($param)
    
    // Request a token using the class function
    
    // Send a token request and start the a web server on the port specified in $param.redirectURI 
    //to intercept the authorization response
    $token:=$oAuth2.getToken() 
    
    // Set the email address for SMTP configuration 
    $address:= "[email protected]" // Replace with your Microsoft email account address
    
    // Set the email's content and metadata
    $email:=New object
    $email.subject:="My first mail"
    $email.from:=$address
    $email.to:="[email protected]" // Replace with the recipient's email address
    $email.textBody:="Test mail \r\n This is just a test e-mail \r\n Please ignore it"
    
    // Configure the SMTP connection
    $parameters:=New object
    $parameters.accessTokenOAuth2:=$token
    $parameters.authenticationMode:=SMTP authentication OAUTH2
    $parameters.host:="smtp.office365.com"
    $parameters.user:=$address
    
    // Send the email 
    
    $smtp:=SMTP New transporter($parameters)
    $statusSend:=$smtp.send($email)
    
    1. Execute the method. Your browser opens a page that allows you to authenticate.

    2. Log in to your Microsoft Outlook account and check that you've received the email.

    Recommend Projects

    • React photo React

      A declarative, efficient, and flexible JavaScript library for building user interfaces.

    • Vue.js photo Vue.js

      ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

    • Typescript photo Typescript

      TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

    • TensorFlow photo TensorFlow

      An Open Source Machine Learning Framework for Everyone

    • Django photo Django

      The Web framework for perfectionists with deadlines.

    • D3 photo D3

      Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

    Recommend Topics

    • javascript

      JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

    • web

      Some thing interesting about web. New door for the world.

    • server

      A server is a program made to process requests and deliver data to clients.

    • Machine learning

      Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

    • Game

      Some thing interesting about game, make everyone happy.

    Recommend Org

    • Facebook photo Facebook

      We are working to build community through open source technology. NB: members must have two-factor auth.

    • Microsoft photo Microsoft

      Open source projects and samples from Microsoft.

    • Google photo Google

      Google โค๏ธ Open Source for everyone.

    • D3 photo D3

      Data-Driven Documents codes.