Accounts
Send events from your own integrations to Assembly. This is a great way to track and update your accounts.
API Key
You must first create an API Key in Assembly. It is located under “Manage Integrations”, then scroll to the bottom and click “Manage API Keys”.
Here, you can see your existing keys, their names and expiration. You can delete existing ones.
When creating a new API key, the name must be unique in your organization. Once the key has been created, you will be shown a one-time dialog box with your new API key. You should copy this down somewhere safe — we will not show this again.
If you lose your API key, you will need to make a new one.
Accounts
Maintain your accounts through these API endpoints. Accounts types include: Company or Customer.
Create Account
Required attributes are type
, name
, and domain
. The domain for a Company Account should be a domain i.e. company.com
while the domain for a Customer Account should be an email i.e. name@company.com
.
There are various optional attributes that you can add to define the account. The possible attributes are shown in the example below. You can also add source specific IDs that will then act as another id for you to reference the account with in lieu of using our Assembly ID for the account.
Note there are attributes specific to Company versus Customer Accounts:
- Company Specific Attributes:
company_type
andnumber_of_seats
- Customer Specific Attributes:
company_id
The Assembly ID of the created account is returned in the format {"id":"01945162-52fc-739b-98de-e2ac9f2eec49"}
Get Accounts
You can grab all the accounts for your organization by calling accounts
. This call is paginated, so please include the limit and offset in your URL otherwise the default limit=100
and offset=0
will be used.
The return type is {"accounts": {"data": [...], "has_next_page": ..., "next_cursor": ...}}
.
Note: the accounts are sorted by type so all Company Accounts will show up before Customer Accounts. Within each account type section, the accounts are sorted alphabetically by account name.
To grab a specific account, you can use the ID from Assembly, the domain of the account, or a source specific ID that you’ve already linked to the account. This call is not paginated since you are only grabbing a specific account.
The account is returned in this format {"account":{...}}
Update Account
Update any of the account fields except the additional_properties
with this method. You can update an account via the Assembly ID, the domain of the account, or with a source specific ID that you’ve already linked to the account.
In the input arguments, include any of the fields that you want to update.
All the allowed parameters are the same as the CREATE
endpoint except for tags and source specific IDs.
Instead of a general tags list the arguments are added_tags
and removed_tags
. Similarily, instead of a general source specific IDs list, the arguments are ‘added_source_specific_ids’ and ‘removed_source_specific_ids’.
The Assembly ID of the updated account is returned in the format {"id":"01945162-52fc-739b-98de-e2ac9f2eec49"}
.
Delete Account
Delete an account by referencing the account with its Assembly ID, domain, or source specific ID. The return is empty {}
.
Additional Properties
The custom attributes of an account that’s stored on a per account basis. Therefore, all of these endpoints affect a specific account’s additional properties.
Create Additional Properties
To denote which account to create the property on, you have to append the url with either the account’s Assembly ID, source specific id, or domain.
Then include a map of the properties you want to add to the value of each property. If the property already exists on that account’s additional properties, an “already exists” error will be returned. Otherwise, the Assembly ID of the account that the property was created for is returned in the format {"id":"01945162-52fc-739b-98de-e2ac9f2eec49"}
.
Get Additional Properties
Specify either the Assembly ID, domain, or source specific ID of the account to get the additional properties of the account.
The return includes the ID of the account and the account’s additional properties in this format {"id": "01945162-52fc-739b-98de-e2ac9f2eec49", "additional_properties": {...}}
Update Additional Properties
Update an account’s aditional properties by specifying the account’s Assembly ID, domain, or source specific ID. Include any of the fields that we want to update with a mapping to their new values.
If the specified field does not already exist in the account’s additional properties, we will directly add it. The ID of the account whose additional properties were updated is returned in the format {"id": "01945162-52fc-739b-98de-e2ac9f2eec49"}
Delete Additional Property
Similarly, reference an account with its Assembly ID, domain, or source specific ID and then specify which properties to delete by the property names. The return is empty {}
.
Labels
Here are the API endpoints for account labels. Account label types include: Tier
, Stage
, CompanyType
, or AccountTag
(Tags).
Create Label
Required attributes are the type
, name
, and color
of the label. Optionally, include a description. The ID of the created label will be returned in this format {"id": "0195a666-3405-7664-aaf1-ad65b6091e96"}
.
Get Labels
There are three versions of grabbing account labels. You can grab all the account labels for your organization by calling /account/labels
.
To grab a specific type of account labels, add the label type so /account/labels/{type}
. And then to grab a specific label, add the label ID so /account/labels/{label_id}
.
The labels are returned in this format {"labels": [...]}
.
Update Label
To update an account label, you must have the label id and call /account/labels/{label_id}
. Use the get account labels endpoints to grab the label id if needed.
Include the fields that you are changing for the label in the json object. The possible arguments are type
, name
, color
, and description
. The ID of the updated label is returned as {"id": "0195a666-3405-7664-aaf1-ad65b6091e96"}
Delete Label
You also must have the label_id to delete an account label. Then just call /account/labels/{label_id}
with a delete operation. The return is empty {}
.
Usage
Here are the API endpoints for sending usage logs to be stored under a specific account.
Add Usage Log
The required attributes are timestamp
of when the event happened, the type
of event i.e. “Action” or “Message”, and some content
about the event.
Additionally, you can add an attribute
that the log should be tied to and any metadata. We’ll use the attribute to group logs into categories that can accordingly be used for calculating account health score.
The ID of the created log is returned in this format {"id": "01945162-52fc-739b-98de-e2ac9f2eec49"}
.
If you want to tie the usage log to a specific account, then you’ll need to include the account’s Assembly ID, source specific id, or domain in the url.
Get Usage Logs
You can either grab all the usage logs for your organization or specify a specific account through one of the three account identifying methods.
This call is also paginated, so please include the limit and offset in your URL otherwise the default limit=100
and offset=0
will be used.
Note: the logs are returned in decreasing timestamp order so the newest logs are returned first.
The logs are returned in this format {"logs": {"data": [...], "has_next_page": ..., "next_cursor":...}}
Update Usage Log
Update any values in a usage log by the usage log’s ID. Include the values that you want to update in the input data. Note, that updating the metadata field will completely override the existing metadata value.
The ID of the updated log is returned in this format {"id": "01945162-52fc-739b-98de-e2ac9f2eec49"}
.
Delete Usage Log
Delete a usage log by its specific ID which is returned when a usage log is created. The return is empty {}
.
Rate Limiting
There is a rate limit of 30 events per second. If you exceed this, you will receive a 429 response code.
If you need a higher rate, please let us know.