Path parameters

  • id integer(int32) Required

    The id of the ambassador post

application/json

Body Required

  • status string | null
  • contents array
  • titles array
  • shareable boolean
  • no_comment boolean
  • is_akn boolean
  • is_planned boolean
  • start_date string
  • visibility string | null

Responses

  • 200 application/json

    returns the updated ambassador post

  • 403

    Forbidden - You don't have permission to access this route

  • 404

    Not found

PATCH /manager/posts/{id}
curl \
 --request PATCH 'https://domain.tld/api/v2/manager/posts/{id}' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"status":"string","contents":[],"titles":[],"shareable":true,"no_comment":true,"is_akn":true,"is_planned":true,"start_date":"string","visibility":"string"}'
Request examples
{
  "status": "string",
  "contents": [],
  "titles": [],
  "shareable": true,
  "no_comment": true,
  "is_akn": true,
  "is_planned": true,
  "start_date": "string",
  "visibility": "string"
}