-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
When creating a key event, I would like to be able to post more events per site/ multi events, instead of making each time a POST request per event
Describe the solution you'd like
A clear and concise description of what you want to happen.
The API should accept a multi-object array
POST sites/{siteId}/key-events
Body:
[{
"name": "Broken Internal Links",
"type": "seo",
"time": "2024-02-23T12:28:00.000Z"
}
,{
"name": "FIX:Broken Links",
"type": "seo",
"time": "2024-03-23T19:28:00.000Z"
}]
Currently, this fails with 500 ( "message": "Required field "name" is missing")
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request