Search for Birthdays today

hi together, i want to search our personio list about birthdays today and send a message to a google chat room.

that is what i have created, but it seems my function is not working. From personio i get a list of employess with firstname, secondname, birthday and a profile picture. Than i do an array for searching in it, is there someone today.

Any ideas?

Hey @Kay_Dollt
you dont need to use array aggregator or anything else
you can directly put a filter between personio and Google

This filter will have same content of what you have put in the set variable but in two different fields

2 Likes

Welcome to the Make community!

Please provide the output bundles of the trigger module [1] by running the scenario, then click the white speech bubble on the top-right of each module and select “Download output bundles”.
Screenshot_2023-10-06_141025

A.

Save the bundle contents in your text editor as a bundle.txt file, and upload it here into this discussion thread.
Uploading it here will look like this:

bundle.txt (12.3 KB)

B.

If you are unable to upload files on this forum, alternatively you can paste the formatted output bundle in this manner:

  • Either add three backticks ``` before and after the code, like this:

    ```
    input/output bundle content goes here
    ```

  • Or use the format code button in the editor:
    Screenshot_2023-10-02_191027

Providing the output bundles will allow others to replicate what is going on in the scenario even if they do not use the external service.

This will allow others to better assist you. Thanks!

3 Likes

Yes of course…

[
    {
        "id": 20041511,
        "first_name": "Max",
        "last_name": "Mustermann",
        "profile_picture": null,
        "dynamic_7807036": "1991-03-17T00:00:00+01:00",
        "__IMTLENGTH__": 44,
        "__IMTINDEX__": 1
    },
    {
        "id": 19579212,
        "first_name": "Max",
        "last_name": "Mustermann",
        "profile_picture": null,
        "dynamic_7807036": "2001-04-01T00:00:00+02:00",
        "__IMTLENGTH__": 44,
        "__IMTINDEX__": 2
    },
    {
        "id": 19412488,
        "first_name": "Max",
        "last_name": "Mustermann",
        "profile_picture": null,
        "dynamic_7807036": "2000-03-19T00:00:00+01:00",
        "__IMTLENGTH__": 44,
        "__IMTINDEX__": 3
    }
]

You’ll need a minimum of three modules:

Screenshot_2024-01-16_210126

Screenshot_2024-01-16_200145

Give it a go and let us know if you have any issues!

3 Likes

really great… thanks a lot. .its working

3 Likes