Hello Community,
I try to create my first App (for listmonk).
The module I am “fighting with” is the one to create a new user. User can have atributes which are stored as a JSON map in Listmonk:
https://listmonk.app/docs/concepts/#attributes
The API endpoint is:
https://listmonk.app/docs/swagger/#/Subscribers
The body should look like this:
{
"email": "testuser4@xyz.com",
"name": "Max Mustermann",
"status": "enabled",
"preconfirm_subscriptions": true,
"attribs":
{
"sdfsdfs": "qqqqqabcsfsdfs",
"keddddy": "adddbc"
}
}
I want the Create module to have a field where the user can insert the RAW JSON data string.
This is my attempt:
{
"url": "/subscribers",
"method": "POST",
"body": {
"email": "{{parameters.email}}",
"name": "{{parameters.name}}",
"status": "{{parameters.status}}",
"lists": "{{parameters.lists}}",
"preconfirm_subscriptions": true,
"attribs": "{{parameters.attribs}}"
},
"response": {
"output": "{{body}}"
}
}
But the API always answers with an error:
"Unmarshal type error: expected=models.JSON, got=string, field=attribs, offset=157"
This is the request body:
{
"name": "Friedrich März",
"email": "ruh90@gmx.de",
"lists": [
2,
1
],
"status": "enabled",
"attribs": "{\n\"sdfsdfs\": \"qqqqqabcsfsdfs\",\n\"keddddy\": \"adddbc\"\n}",
"preconfirm_subscriptions": true
}
I know that I need to convert the JSON raw string in to a data structure - but how?
Thanks - Simon
PS: Hardcoding the data structure in the mappable parameters works:
{
"url": "/subscribers",
"method": "POST",
"body": {
"email": "{{parameters.email}}",
"name": "{{parameters.name}}",
"status": "{{parameters.status}}",
"lists": "{{parameters.lists}}",
"preconfirm_subscriptions": true,
"attribs":
{
"sdfsdfs": "qqqqqabcsfsdfs",
"keddddy": "adddbc"
}
},
"response": {
"output": "{{body}}" // Return JSON response body as an output bundle
}
}