ActUsers

Act Users API

Sync permissioned users data with Act through Apideck's unified API. One integration, instant access to the governed data your team needs.

Supported Operations for Act Users

List, Create, Get, Delete operations available through our unified API

list
get
create
update
delete

Supported Fields

7 fields

Fields available for Act Users

idusernamefirst_namelast_nameemployee_numberstatusemails

API Model Preview

Sample response structure for users

{
  "id": "12345",
  "username": "Example Username",
  "first_name": "Example First Name",
  "last_name": "Example Last Name",
  "employee_number": 10,
  "status": "active",
  "emails": [
    {
      "id": "12345",
      "email": "contact@example.com",
      "type": "primary"
    }
  ]
}

Quick Start Example

Start syncing Act users in minutes

Node.js
import { Apideck } from '@apideck/unify'

const apideck = new Apideck({
  apiKey: process.env.APIDECK_API_KEY,
  appId: 'YOUR_APP_ID',
  consumerId: 'YOUR_CONSUMER_ID'
})

// List users from Act
const result = await apideck.crm.users.list({
  serviceId: 'act'
})

for await (const page of result) {
  console.log(page)
}
// Returns unified users data

Act SDKs

Build Act integrations in your favorite language with our official SDKs.

Launch accounting integrations in weeks, not months

Sign Up