Questions tagged [activecollab]

Active Collab is project collaboration system. It's a commercial product developed using PHP and MySQL.

Active Collab was originally released as an open source alternative to Basecamp in July 2006. One year after that, original author of the project founded a company and released a new, rewritten version of the application (Active Collab 1.0, in October 2007). New version was released under the terms of proprietary license, but customers still received full source code of the application.

Original open source version continues to live through various forks (Project Pier, Feng Office etc).

Active Collab offers JSON over HTTP API that allows developers to read, update and delete the data within the system. It also features webhooks, so external systems can receive notifications when events happen in Active Collab.

System Requirements for Active Collab 5 are:

  1. PHP 5.6 or newer
  2. MySQL 5.5.3 or newer
  3. Web server capable of running PHP

Application itself is platform independent and runs well on Windows, Linux, Mac etc powered servers.

149 questions
1
vote
1 answer

ActiveCollab API filter results in API request

In its simplest form, I would like to return specific results, by means of a filter, but I can't see anything mentioned in the API documentation! I'm using the Feather SDK (https://github.com/activecollab/activecollab-feather-sdk) with this API…
Graeme Leighfield
  • 2,825
  • 3
  • 23
  • 38
1
vote
0 answers

Activecollab Self Hosted account API Authentication invalid response

I am using this API integration https://github.com/activecollab/activecollab-feather-sdk I using this below code to get token: $authenticator = new \ActiveCollab\SDK\Authenticator\SelfHosted('', 'My Application', '',…
venis
  • 11
  • 3
1
vote
1 answer

Why isn't the sort_by_name parameter working on ActiveCollab API?

I'm calling ActiveCollab API with: $query = $client->get('projects', ['sort_by_name' => true]); But the sort_by_name is being ignored.
Andy Milk
  • 21
  • 2
1
vote
1 answer

ActiveCollab 5 API: 500 Internal Server Error

I've been using the API for over a year now. And since yesterday I've haven't been able to make one successful GET call. Since the application was moved to production I've gotten a few 500 Internal Server Errors but not for over 24 hours straight.…
Ben Daland
  • 21
  • 2
1
vote
1 answer

ActiveCollab 5.15 TrackingReport filter API returns 404

The TrackingReport filter is returning a 404: https://developers.activecollab.com/api-documentation/v1/reports-and-filters/expenses-filter.html I'm using the following GET call: /api/v1/reports/run?type=TrackingReport X-Angie-ApplicationVersion…
1
vote
1 answer

ActiveCollab API return all active projects

We have problem with API from ActiveCollab. We are using this API point: https://app.activecollab.com/117236/api/v1/projects/ but it is not returning all active projects. For example there is not included project "CrossMasters: Marketing"…
1
vote
1 answer

"Whats new" date restriction on API

I am developing an app with the Active Collab API using the What's New endpoint. I am retrieving this regularly, so I have the latest information. I was wondering if there was a way to specify the activity by date to get the items since then? For…
mikestreety
  • 833
  • 6
  • 28
1
vote
0 answers

404 error with empty message when posting to /projects/:id/time-records

When posting the following payload to "/projects/1/time-records" I am getting a response with a 404 error code and an empty error message: {"task_id":"1","value":"1:00","user_id":"1","job_type_id":1,"record_date":"2018-06-22"} Is there anything…
1
vote
0 answers

The stream or file could not be opened

got a few bug on my project. I'm using ActiveCollab and logs are saying that, but my "/var/www/ac/logs" is 777 and after many try my entire "/var/www/ac/activecollab" became 777 too. How could it be a permission error when 777 is enable everywhere ?…
1
vote
2 answers

Active Collab API doesn't show all reports

I'm fetching all the open reports tagged as CHECKPOINT using the collab API and it's working fine. Although, when I run a custom report for the tasks, at Active Collab website, I get more and different results than what I fetched. What I need is to…
Leo S.
  • 106
  • 1
  • 5
1
vote
0 answers

Activecollab htaccess convert to Caddyfile

please help with converting the htaccess file into caddyfile. We tried it with self-help but unsuccessfully. Can you look at it and help? Thank you Options -Indexes RewriteEngine On RewriteCond %{REQUEST_FILENAME} -f…
1
vote
1 answer

Active Collab User Invite API Script Error email_addresses not found in array

In this post is explained how to invite people via API: Active Collab send Email after User create I created my auth Token and tried out this API/JSON Request with Powshell: Invoke-RestMethod -Method Post -Headers $headers -Uri…
1
vote
1 answer

ActiveCollab API - return only open tickets

Currently I see only this option in the documentation projects/:project_id/tasks This command lists all open and completed non-archived Tasks from a Project. Is there a filter or parameter (or another API call) I can pass to get back only the…
lorandd
  • 164
  • 3
  • 10
1
vote
1 answer

Active Collab send Email after User create

I'am using the Active Collab API V5 to create User from our Service Desk - the creation of the User with the following POST works. curl -k -v -h "Content-Type:application/json" -h "X-Angie-AuthApiToken:XXXXXXX" -X POST -d '{"type":…
1
vote
0 answers

Active Collab API: How to get projects

I'm trying out the ActiveCollab API for my first time. I had to use StackOveflow to figure out how to get the API token since the docs don't tell me this. Below is my code: /* GET INTENT */ $url =…
steeped
  • 2,613
  • 5
  • 27
  • 43