Quickstart
From zero to your first response in three steps.
Get an API token
Section titled “Get an API token”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.
Know the base URL
Section titled “Know the base URL”All requests go to the following base URL:
https://api.arcsite.com/v1
Make your first request
Section titled “Make your first request”List the caller’s projects to confirm everything is wired up correctly.
GET https://api.arcsite.com/v1/projects
curl "https://api.arcsite.com/v1/projects" \ -H "Authorization: Bearer your_api_token_here"const response = await fetch("https://api.arcsite.com/v1/projects", { headers: { Authorization: "Bearer your_api_token_here", },});const data = await response.json();import requests
response = requests.get( "https://api.arcsite.com/v1/projects", headers={"Authorization": "Bearer your_api_token_here"},)data = response.json()[ { "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 }]