Create Activity
POST
/admin/content-creators/{id}/activity
const url = 'http://localhost:9000/admin/content-creators/example/activity';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"type":"ContentCreatorActivityType.NOTE","note":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:9000/admin/content-creators/example/activity \ --header 'Content-Type: application/json' \ --data '{ "type": "ContentCreatorActivityType.NOTE", "note": "example" }'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Request Body required
Section titled “Request Body required ” Media type application/json
object
type
required
string
note
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
Example generated
{}