curl --request POST \
--url https://www.getsnippets.ai/api/prompts/snippets \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"snippets": [
{
"title": "My API Snippet",
"content": {
"type": "plaintext",
"content": "Hello, world!"
},
"teamId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"note": "<string>",
"shortcut": "<string>",
"folderId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"tagIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"additionalVariations": [
{
"content": {
"type": "plaintext",
"content": "Hello, world!"
},
"variationName": "Spanish Version"
}
]
}
]
}
'