API For retrieving all installed apps and apps integrations

Hi,
We didn’t find any API for retrieving the list of installed apps and app integrations.
We’d be glad if you could attach a reference if such an API exists.

Thanks.

Hello there @saasdev and welcome to the community!

I hope you like it here :muscle:

We do not have such capability in our API.

I will create a request for it!

Let me know if you have any other questions!

Cheers,
Matias

Thanks @Matias.Monday, It is much appreciated!
Do you have an estimation when it will be delivered?

On top of that, we have several questions regarding Monday’s API:

  1. Board activity log: is there any list of event types? If so - where can I find it.
    We are trying to track the activity via automation and it is impossible to do so without having this list and the response data structure.

  2. How can we retrieve boards/docs creation time via your API?

  3. After sharing a board/doc publicly using a link with view only access, Is there an API for retrieving this event data (board id + the public link)?

Hi @Matias.Monday , another question :slight_smile:
In the Users API - we can query for non-active users, but what is the definition of an inactive user?

  1. User who has been deactivated
  2. User who haven’t accepted their invitation yet.

any other options?

Thanks.

Hello again @saasdev I do not have any ETAs for now but I would not count on it being deployed in the near future.

Regarding your API questions:

  1. As of today we do not count with a list of event types. I will reach out to the team in charge of our documentation to ask for them to add this (no ETAs).
  2. We do not have a created_at field for boards, but as a workaround, you can use the activity logs and check the first event:
{
  boards (ids:1234567890){
    activity_logs{
      event
      data
      created_at
    }
  }
}
  1. There is no way of getting that information via API

  2. It refers to both 1 and 2 - someone who has either been deactivated, or who hasn’t accepted their invitation yet.

Let me know if you have any other questions!

Cheers,
Matias

thanks @Matias.Monday for you prompt response!

Regarding second #2 - Is it possible to sort the activity log by time? If I use the query you mentioned I get all activity logs, and If I limit it to 1 I get only the newest activity. So is there an easy way to get the oldest activity (so we would deduce the board creation time).

Hello again @saasdev,

You can use the “to” and “from” parameters to specify between which two dates you want to get events for.

But there is no way to sort the results by oldest first.

Let me know if you have any other questions!

Cheers,
Matias