Can I store values from the response of the authentication workflow in a custom app integration to reuse them in other actions?

Hi all, I'm developing a custom app integration for Taiga.io
The authentication works already.
The response is the following json:

JSON:
[
    {
        "id": 123123,
        "username": "justme",
        "full_name": "Just Me",
        "full_name_display": "Just Me",
        "color": "#95be9b",
        "bio": "",
        "lang": "it",
        "theme": "taiga",
        "timezone": "",
        "is_active": true,
        "photo": null,
        "big_photo": null,
        "gravatar_id": "whatever00000000",
        "roles": [
            "Product Owner"
        ],
        "total_private_projects": 1,
        "total_public_projects": 1,
        "email": "[email protected]",
        "uuid": "03245634kkv38so944y4g75",
        "date_joined": "1910-19-19T20:07:26.080Z",
        "read_new_terms": false,
        "accepted_terms": true,
        "max_private_projects": null,
        "max_public_projects": null,
        "max_memberships_private_projects": null,
        "max_memberships_public_projects": null,
        "verified_email": true,
        "refresh": "refresh_token",
        "auth_token": "authorization_token"
    }
]
Well I'd like to know if it's possible to store the id or the email for reuse in other actions. It would be useful as many endpoints require to specify the id of the current user, or they'll return thousands of useless entries.
Thank you in advance for any help you'll be able to give me.
 

ArshilAhmad

Well-known member
Staff member
Hi @BusinessOnSteroids,

Currently, there is no dedicated tool to store the ID or email obtained from the custom application. However, you can use a Google Sheets spreadsheet to store the data and look it up in any workflow as needed.
 
Top