Projects
Retrieve Project
Projects
Retrieve Project
Returns a specific project by ID
GET
/
projects
/
{id}
curl --request GET \
--url https://wt.ls/api/v4/projects/{id} \
--header 'apiKey: <api-key>'
{
"data": {
"project": {
"id": "<string>",
"name": "<string>",
"url": "<string>",
"mode": "<string>",
"startFrom": 123,
"referrals": true,
"color": "<string>",
"title": "<string>",
"desc": "<string>",
"socialDescription": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"metrics": {},
"senderName": "<string>",
"replyTo": "<string>",
"sender": "<string>",
"legal": "<string>",
"icon": "<string>",
"favicon": "<string>",
"ogImage": "<string>",
"columns": [
"<string>"
],
"analytics": {}
}
}
}
Authorizations
API key to authorize requests
Path Parameters
ID of the project to retrieve
Response
200
application/json
Project response
curl --request GET \
--url https://wt.ls/api/v4/projects/{id} \
--header 'apiKey: <api-key>'
{
"data": {
"project": {
"id": "<string>",
"name": "<string>",
"url": "<string>",
"mode": "<string>",
"startFrom": 123,
"referrals": true,
"color": "<string>",
"title": "<string>",
"desc": "<string>",
"socialDescription": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"metrics": {},
"senderName": "<string>",
"replyTo": "<string>",
"sender": "<string>",
"legal": "<string>",
"icon": "<string>",
"favicon": "<string>",
"ogImage": "<string>",
"columns": [
"<string>"
],
"analytics": {}
}
}
}