MediaCP Cloud
    • Channel for customers
      • GET api/channels
        GET
      • POST api/channels
        POST
      • GET api/channels/{id}
        GET
      • PUT api/channels/{id}
        PUT
      • DELETE api/channels/{id}
        DELETE
    • Channel for tenants
      • GET api/tenants/channels
        GET
      • POST api/tenants/customers/{customer_id}/channels
        POST
    • Customer
      • GET api/customers
        GET
      • POST api/customers
        POST
      • GET api/customers/{id}
        GET
      • PUT api/customers/{id}
        PUT
      • DELETE api/customers/{id}
        DELETE
    • LiveEvent
      • GET api/live-events
        GET
      • POST api/live-events
        POST
      • GET api/live-events/{id}
        GET
      • PUT api/live-events/{id}
        PUT
      • DELETE api/live-events/{id}
        DELETE
    • MediaContent
      • Download
        GET
      • PUT api/media-contents/{id}/uploaded
        PUT
      • GET api/media-contents
        GET
      • POST api/media-contents
        POST
      • GET api/media-contents/{id}
        GET
      • PUT api/media-contents/{id}
        PUT
      • DELETE api/media-contents/{id}
        DELETE
    • MediaContent Tags
      • GET api/tags
      • POST api/tags
      • GET api/tags/{tag}
      • PUT,PATCH api/tags/{tag}
      • DELETE api/tags/{tag}
      • GET api/media-contents/{mediaContent}/tags
      • POST api/media-contents/{mediaContent}/tags
      • DELETE api/media-contents/{mediaContent}/tags/{tag}
    • Plan
      • GET api/plans
      • POST api/plans
      • GET api/plans/{id}
      • PUT api/plans/{id}
      • DELETE api/plans/{id}
    • Publisher
      • GET api/channels/{channel_id}/publishers
      • POST api/channels/{channel_id}/publishers
      • GET api/channels/{channel_id}/publishers/{id}
      • PUT api/channels/{channel_id}/publishers/{id}
      • DELETE api/channels/{channel_id}/publishers/{id}
    • Team member
      • GET api/team-members
      • POST api/team-members
      • GET api/team-members/{id}
      • PUT api/team-members/{id}
      • DELETE api/team-members/{id}

    MediaContent Tags

    APIs for managing Tags applied to Media Content.
    All endpoints require authentication via Sanctum and are scoped to the
    current tenant. Customers can only manage their own tags. Team members and
    admins may operate across customers within the current tenant by passing
    a customer_id (where applicable).
    Previous
    DELETE api/media-contents/{id}
    Next
    GET api/tags
    Built with