Accelo website screenshot

Accelo

Accelo is a cloud-based service operations automation (ServOps) platform that unifies project management, client relationship management (CRM), time tracking, retainers, quotes, billing, and invoicing for professional services businesses. The Accelo REST API exposes resources such as companies, contacts, activities, tasks, jobs (projects), milestones, invoices, contracts, and webhooks using OAuth 2.0 authentication scoped to a deployment subdomain.

1 APIs 0 Features
Professional Services AutomationProject ManagementCRMTime TrackingInvoicingService Operations

APIs

Accelo REST API

REST API for Accelo with CRUD access to companies, contacts, activities, tasks, projects (jobs), milestones, invoices, contracts, quotes, prospects, time entries, staff, and web...

Collections

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
📝
Signup
Signup
💰
Pricing
Pricing
🔗
Login
Login
💬
Support
Support
📰
Blog
Blog

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Accelo REST API
  version: v0
request:
  auth:
    type: oauth2
    flow: client_credentials
    accessTokenUrl: https://{deployment}.api.accelo.com/oauth2/v0/token
    credentials:
      clientId: '{{clientId}}'
      clientSecret: '{{clientSecret}}'
items:
- info:
    name: Activities
    type: folder
  items:
  - info:
      name: List activities
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/activities
    docs: List activities
  - info:
      name: Create an activity
      type: http
    http:
      method: POST
      url: https://{deployment}.api.accelo.com/api/v0/activities
    docs: Create an activity
  - info:
      name: Retrieve a specific activity
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/activities/:activity_id
    docs: Retrieve a specific activity
  - info:
      name: Update an activity
      type: http
    http:
      method: PUT
      url: https://{deployment}.api.accelo.com/api/v0/activities/:activity_id
    docs: Update an activity
  - info:
      name: Delete an activity
      type: http
    http:
      method: DELETE
      url: https://{deployment}.api.accelo.com/api/v0/activities/:activity_id
    docs: Delete an activity
  - info:
      name: List interactions for an activity
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/activities/:activity_id/interactions
    docs: List interactions for an activity
  - info:
      name: List threads for an activity
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/activities/:activity_id/threads
    docs: List threads for an activity
- info:
    name: Companies
    type: folder
  items:
  - info:
      name: List companies
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/companies
    docs: List companies
  - info:
      name: Create a company
      type: http
    http:
      method: POST
      url: https://{deployment}.api.accelo.com/api/v0/companies
    docs: Create a company
  - info:
      name: Get a company
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/companies/:company_id
    docs: Get a company
  - info:
      name: Update a company
      type: http
    http:
      method: PUT
      url: https://{deployment}.api.accelo.com/api/v0/companies/:company_id
    docs: Update a company
  - info:
      name: Delete a company
      type: http
    http:
      method: DELETE
      url: https://{deployment}.api.accelo.com/api/v0/companies/:company_id
    docs: Delete a company
- info:
    name: Contacts
    type: folder
  items:
  - info:
      name: List contacts
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/contacts
    docs: List contacts
  - info:
      name: Create a contact
      type: http
    http:
      method: POST
      url: https://{deployment}.api.accelo.com/api/v0/contacts
    docs: Create a contact
  - info:
      name: Get a contact
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/contacts/:contact_id
    docs: Get a contact
  - info:
      name: Update a contact
      type: http
    http:
      method: PUT
      url: https://{deployment}.api.accelo.com/api/v0/contacts/:contact_id
    docs: Update a contact
- info:
    name: Jobs
    type: folder
  items:
  - info:
      name: List jobs (projects)
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/jobs
    docs: List jobs (projects)
  - info:
      name: Create a job
      type: http
    http:
      method: POST
      url: https://{deployment}.api.accelo.com/api/v0/jobs
    docs: Create a job
  - info:
      name: Get a job
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/jobs/:job_id
    docs: Get a job
  - info:
      name: Update a job
      type: http
    http:
      method: PUT
      url: https://{deployment}.api.accelo.com/api/v0/jobs/:job_id
    docs: Update a job
- info:
    name: Issues
    type: folder
  items:
  - info:
      name: List issues (tickets)
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/issues
    docs: List issues (tickets)
  - info:
      name: Create an issue
      type: http
    http:
      method: POST
      url: https://{deployment}.api.accelo.com/api/v0/issues
    docs: Create an issue
  - info:
      name: Get an issue
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/issues/:issue_id
    docs: Get an issue
  - info:
      name: Update an issue
      type: http
    http:
      method: PUT
      url: https://{deployment}.api.accelo.com/api/v0/issues/:issue_id
    docs: Update an issue
- info:
    name: Tasks
    type: folder
  items:
  - info:
      name: List tasks
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/tasks
    docs: List tasks
  - info:
      name: Create a task
      type: http
    http:
      method: POST
      url: https://{deployment}.api.accelo.com/api/v0/tasks
    docs: Create a task
  - info:
      name: Get a task
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/tasks/:task_id
    docs: Get a task
  - info:
      name: Update a task
      type: http
    http:
      method: PUT
      url: https://{deployment}.api.accelo.com/api/v0/tasks/:task_id
    docs: Update a task
- info:
    name: OAuth
    type: folder
  items:
  - info:
      name: Get information about the current access token
      type: http
    http:
      method: GET
      url: https://{deployment}.api.accelo.com/api/v0/tokeninfo
    docs: Get information about the current access token
bundled: true