Projects

List all projects of your workspace

All of your existing projects can be retrieved from the GET /projects route.

Get Projects

get

Retrieve all of your projects (containing id, name & creation date)

Authorizations
x-api-keystringRequired

All of your Abyssale requests must contain a x-api-key header with your API Key.

Responses
chevron-right
200

Ok

application/json
idstring · uuidRequired

Unique identifier of the project

Example: d59adee9-4867-11f0-96f2-0a00d9eb8f78
namestringRequired

Name of the project

Example: HTML5 Tests
created_at_tsintegerRequired

Unix timestamp when the project was created

Example: 1749827125
get
/projects

Create a new project

You can create a new project with the POST /projects route.

Create Project

post

Create a new project to organize your templates and images

Authorizations
x-api-keystringRequired

All of your Abyssale requests must contain a x-api-key header with your API Key.

Body
namestring · min: 2 · max: 100Required

Name of the project

Example: Summer Campaign 2024
Responses
chevron-right
200

Project created successfully

application/json
idstring · uuidRequired

Unique identifier of the project

Example: d59adee9-4867-11f0-96f2-0a00d9eb8f78
namestringRequired

Name of the project

Example: HTML5 Tests
created_at_tsintegerRequired

Unix timestamp when the project was created

Example: 1749827125
post
/projects
200

Project created successfully

Last updated