Installiere uns als App auf deinem Homescreen 🪄 Klicke auf das Symbol oben rechts in der Adressleiste.

Projekte

GET https://paths.to/api/projects/
curl --request GET \
--url 'https://paths.to/api/projects/' \
--header 'Authorization: Bearer {api_key}' \
Parameter Details Beschreibung
page Optional Ganzzahl Die Seitenzahl aus der deine Ergebnisse ausgelesen werden sollen. Voreingestellt ist 1.
results_per_page Optional Ganzzahl Wieviele Ergebnisse pro Seite möchtest Du angezeigt bekommen? Erlaubte Werte sind: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Voreingestellt ist 25.
{ "data": [ { "id": 1, "name": "Development", "color": "#0e23cc", "last_datetime": "2021-03-14 21:22:37", "datetime": "2021-02-04 17:51:07" }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://paths.to/api/projects?&page=1", "last": "https://paths.to/api/projects?&page=1", "next": null, "prev": null, "self": "https://paths.to/api/projects?&page=1" } }
GET https://paths.to/api/projects/{project_id}
curl --request GET \
--url 'https://paths.to/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "name": "Development", "color": "#0e23cc", "last_datetime": "2021-03-14 21:22:37", "datetime": "2021-02-04 17:51:07" } }
POST https://paths.to/api/projects
Parameter Details Beschreibung
name Pflicht Zeichenkette / String -
color Optional Zeichenkette / String -
curl --request POST \
--url 'https://paths.to/api/projects' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Production' \
--form 'color=#ffffff' \
{ "data": { "id": 1 } }
POST https://paths.to/api/projects/{project_id}
Parameter Details Beschreibung
name Optional Zeichenkette / String -
color Optional Zeichenkette / String -
curl --request POST \
--url 'https://paths.to/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Production' \
--form 'color=#000000' \
{ "data": { "id": 1 } }
DELETE https://paths.to/api/projects/{project_id}
curl --request DELETE \
--url 'https://paths.to/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \