1. Customer
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}
  1. Customer

POST api/customers

POST
/api/customers

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Examples

Responses

🟢200
text/plain
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/customers' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{"name":"vlk","email":"maiya.nicolas@example.org","encoding":false,"password":"dolores","password_confirmation":"quia"}'
Response Response Example
{"id":"a1ce7b1b-74ce-4861-b0f1-4c95a9aa204d","name":"Roger Rath IV","email":"omitchell@example.net","plan_id":"522655f5-9690-416e-b699-1522128bfea8","plan":"Niger 1896029072","bandwidth_changeover_date":null,"tenant":{"id":"7438b529-bf1b-462a-a7f1-bd87331719ad","name":"VonRueden-Deckow","domains":[],"bandwidth":732,"bandwidth_period":"monthly","bandwidth_changeover_date":null,"customers_limit":24,"channels_limit":44,"transcoder_channels":null,"transcoder_hours":null,"storage":543,"allow_paywall":false,"suspended_at":null,"deleted_at":null},"encoding":false,"created_at":"2026-05-18T05:26:47.000000Z","suspended_at":null}
Previous
GET api/customers
Next
GET api/customers/{id}
Built with