Monday integration

Authentication

Supported authentication methods

Personal token

To proceed with this authentication type you need to obtain API token from Monday. Steps below will instruct you how to do that.

Copy token

Now, when you've obtained a token, lets configure integration in Bugsee.

Start Bugsee integration wizard paste the token into. Click "Next".

Token enter

Configuration

When issues are pushed to Monday, they must be bundled with proper reporter. You need to select user who will be set as reporter for all the issues coming from Bugsee

Select reporter

Custom recipes

Bugsee can accommodate all these customizations with the help of custom recipes. This section provides a few examples of using custom recipes specifically with Monday. For basic introduction, refer to custom recipe documentation.

Setting tags field

By default Bugsee creates and updates Monday pulses with Bugsee issue labels as Monday tags. But labels list can be overridden inside your custom recipe. For example you can add some new label (Monday tag) to existing ones:

function create(context) {
    // ....

    return {
        // ...
        labels: [...issue.labels, "My awesome tag"]
    };
}

function update(context, changes) {
    const result = {};
    // ...

    if (changes.labels) {
        result.labels = [...changes.labels.to, "My awesome tag"];
    }

    return {
        issue: {
            custom: {}
        },
        changes: result
    };
}