curl --request POST \
--url https://api.example.com/api/notification/new/template/modify \
--header 'Authentication: <authentication>' \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"smsKey": "your_sms_key",
"smsContent": "您的验证码是{code}",
"templateName": "验证码模板",
"emailContent": "尊敬的用户,您的验证码是{code}",
"status": 1,
"copyId": "template_copy_id",
"agency": "your_agency",
"type": "sms",
"sendTarget": "user1,user2",
"sendTargetType": "user",
"userId": "your_user_id",
"userName": "your_user_name",
"agencyId": "your_agency_id"
}
'