Overzicht
The Ideas resource allows you to programmatically save post ideas to your LiGo account. Ideas are stored in your content backlog and can be accessed from the Berichten page to develop into full posts later. Gebruik dit eindpunt om: - Capture content ideas as they come to you - Build an automated idea collection system - Integrate with other tools to save ideas from various sources
Create a Post Idea
Save a new post idea to your LiGo account. The idea will be stored with timestamps and can be accessed from the Berichten page.
VERZENDEN
/ideasVerzoekorgaan
| Parameter | Type | Vereist | Beschrijving |
|---|---|---|---|
| idea | String | Vereist | The content of your post idea. |
Voorbeeld van Verzoek
JSON
{
"idea": "Post idea"
}Reactie
JSON
{
"msg": "User-generated idea added successfully",
"idea": {
"idea": "Post idea",
"created_at": "2025-09-25T12:34:56.000000",
"updated_at": "2025-09-25T12:34:56.000000"
}
}Responsvelden
| Veld | Type | Beschrijving |
|---|---|---|
| msg | String | Confirmation message indicating the idea was saved |
| idea | Doel | The created idea object with metadata |
| idea.idea | String | The content of the saved idea |
| idea.created_at | String | ISO 8601 timestamp when the idea was created |
| idea.updated_at | String | ISO 8601 timestamp when the idea was last updated |