Links

POST https://api.propstack.de/v1/links

Dieser Endpoint erstellt einen Link für ein bestimmtes Objekt.

Query Parameters

{
    "id": 1,
    "title": "Foo",
    "url": "https://foo.bar",
    "is_private": false,
    "tags": [],
    "is_embedable": false,
    "on_landing_page": false,
    "position": 1
}

PUT https://api.propstack.de/v1/links/:id

Einen vorhandenen Link aktualisieren. Die gleichen Parameter wie beim Erstellen sind hier verfügbar.

{
    "id": 1,
    "title": "Foobar",
    "url": "https://foo.bar",
    "is_private": false,
    "tags": [],
    "is_embedable": false,
    "on_landing_page": false,
    "position": 1
}

DELETE https://api.propstack.de/v1/links/:id

Last updated