Skip to content

Quickstart

From zero to your first response in three steps.

API tokens are created and managed in the ArcSite admin console. Sign in and open the admin console to generate a token, then use it as a Bearer credential on every request.

All requests go to the following base URL:

https://api.arcsite.com/v1

List the caller’s projects to confirm everything is wired up correctly.

GET https://api.arcsite.com/v1/projects

Terminal window
curl "https://api.arcsite.com/v1/projects" \
-H "Authorization: Bearer your_api_token_here"
Response
[
{
"id": 36029621652695040,
"name": "project 4",
"created_at": "2022-01-16T04:19:23",
"updated_at": "2022-01-16T04:19:23",
"job_number": "144111",
"customer": {
9 collapsed lines
"name": "Jack",
"phone": "1441",
"email": "c@arcsite.com",
"address": {
"street": "street",
"city": "city",
"state": "state",
"zip_code": "300433"
}
},
"tags": ["tag1", "tag2"],
"archived": false
}
]