curl --request POST \
--url https://api.example.com/admin/word/save \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"wordID": 123,
"wordText": null,
"languageID": null,
"aliasWords": null
}
'{
"success": true,
"data": "<unknown>"
}Save the word.
curl --request POST \
--url https://api.example.com/admin/word/save \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"wordID": 123,
"wordText": null,
"languageID": null,
"aliasWords": null
}
'{
"success": true,
"data": "<unknown>"
}