Projects
Jump to ProjectsListProjectsList
This request allows you to get a list of all projects.
Jump to EndpointEndpoint
projects
Value/Type: object
{
"projects": [
{
"url": "mysite.com",
"domain_unicode": "mysite.com",
"tools": [
],
"project_id": 643526670,
"project_name": "myproject",
"owner_id": 123456780,
"permission": [
"OWNER"
]
}
]
}Jump to GetProjectGetProject
This request allows you to get information regarding a project.
Jump to EndpointEndpoint
Request Parameters
project_idRequired
An automatically generated unique identifier for the project. Learn how to get your project ID ›
Value/Type: uint64
project_id
Value/Type: uint64
project_name
Value/Type: string
url
Value/Type: string
tools
Value/Type: object
owner_id
Value/Type: uint64
permission
The project permissions the user making the API call has. Could be: “OWNER”, “READ”, “WRITE”, “CORP_ADMIN_READ”, “CORP_ADMIN_WRITE”.
Value/Type: string
domain_unicode
Value/Type: string
project_id=643526670283248{
"url": "mysite.com",
"domain_unicode": "mysite.com",
"tools": [
{
"tool": "tracking"
}
],
"project_id": 643526670283248,
"project_name": "myproject",
"owner_id": 123456780,
"permission": [
"OWNER"
]
}Jump to CreateProjectCreateProject
This request allows you to create a new project, which includes naming the project and choosing a domain.
Jump to EndpointEndpoint
Request Parameters
project_name
The name the project will have. Cannot contain the following special symbols: ~`!#%’^&*=[]\/|”:<>?
Value/Type: string
url
Value/Type: string
project_id
Value/Type: uint64
project_name
Value/Type: string
url
Value/Type: string
tools
Value/Type: object
owner_id
Value/Type: uint64
permission
The project permissions the user making the API call has. Could be: “OWNER”, “READ”, “WRITE”, “CORP_ADMIN_READ”, “CORP_ADMIN_WRITE”.
Value/Type: string
domain_unicode
Value/Type: string
{"project_name":"","url":""}{
"url": "mysite.com",
"domain_unicode": "mysite.com",
"tools": [
],
"project_id": 643526670283248,
"project_name": "myproject",
"owner_id": 123456780,
"permission": [
"OWNER"
]
}Jump to UpdateProjectUpdateProject
This request allows you to update or change a project’s name.
Jump to EndpointEndpoint
Request Parameters
project_idRequired
An automatically generated unique identifier for the project. Learn how to get your project ID ›
Value/Type: uint64
project_nameRequired
The new project name. Cannot contain the following special symbols: ~`!#%'^&*=[]\/{}|":<>?
Value/Type: string
tools
Value/Type: object
project_id
Value/Type: uint64
project_name
Value/Type: string
url
Value/Type: string
tools
Value/Type: object
owner_id
Value/Type: uint64
permission
The project permissions the user making the API call has. Could be: “OWNER”, “READ”, “WRITE”, “CORP_ADMIN_READ”, “CORP_ADMIN_WRITE”.
Value/Type: string
domain_unicode
Value/Type: string
{"project_id":643526670283248,"project_name":"myproject"}{
"url": "mysite.com",
"domain_unicode": "mysite.com",
"tools": [
{
"tool": "tracking"
}
],
"project_id": 643526670283248,
"project_name": "myproject",
"owner_id": 123456780,
"permission": [
"OWNER"
]
}Jump to RemoveProjectRemoveProject
This request allows you to delete a project from your user account.
Jump to EndpointEndpoint
Request Parameters
project_idRequired
An automatically generated unique identifier for the project. Learn how to get your project ID ›
Value/Type: uint64
result
If a project is successfully deleted, you’ll get a true response. If it’s not, you’ll get an error message.
Value/Type: bool
project_id=0{
"result": true
}Last updated: January 26, 2026