1. Team member
MediaCP Cloud
  • Documentation
    • Channel for customers
      • getApiChannels
      • postApiChannels
      • getApiChannelsId
      • putApiChannelsId
      • deleteApiChannelsId
    • Channel for tenants
      • getApiTenantsChannels
      • postApiTenantsCustomersCustomer_idChannels
    • Customer
      • getApiCustomers
      • postApiCustomers
      • getApiCustomersId
      • putApiCustomersId
      • deleteApiCustomersId
    • LiveEvent
      • postApiLiveEvents
      • getApiLiveEventsId
      • deleteApiLiveEventsId
      • getApiLiveEvents
      • putApiLiveEventsId
    • MediaContent
      • Download
      • PUT api/media-contents/{id}/uploaded
      • getApiMediaContents
      • postApiMediaContents
      • getApiMediaContentsId
      • putApiMediaContentsId
      • deleteApiMediaContentsId
    • MediaContent Tags
      • List tags attached to a MediaContent.
      • Attach a tag to a MediaContent.
      • Detach a tag from a MediaContent.
      • 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
      • getApiPlans
      • postApiPlans
      • getApiPlansId
      • putApiPlansId
      • deleteApiPlansId
    • Publisher
      • getApiChannelsChannel_idPublishers
      • postApiChannelsChannel_idPublishers
      • getApiChannelsChannel_idPublishersId
      • putApiChannelsChannel_idPublishersId
      • deleteApiChannelsChannel_idPublishersId
    • Team member
      • getApiTeamMembers
        GET
      • postApiTeamMembers
        POST
      • getApiTeamMembersId
        GET
      • putApiTeamMembersId
        PUT
      • deleteApiTeamMembersId
        DELETE
  • MCP Cloud Video
    • Channel for customers
      • GET api/channels
      • POST api/channels
      • GET api/channels/{id}
      • PUT api/channels/{id}
      • DELETE api/channels/{id}
    • Channel for tenants
      • GET api/tenants/channels
      • POST api/tenants/customers/{customer_id}/channels
    • Customer
      • GET api/customers
      • POST api/customers
      • GET api/customers/{id}
      • PUT api/customers/{id}
      • DELETE api/customers/{id}
    • LiveEvent
      • GET api/live-events
      • POST api/live-events
      • GET api/live-events/{id}
      • PUT api/live-events/{id}
      • DELETE api/live-events/{id}
    • MediaContent
      • Download
      • PUT api/media-contents/{id}/uploaded
      • GET api/media-contents
      • POST api/media-contents
      • GET api/media-contents/{id}
      • PUT api/media-contents/{id}
      • DELETE api/media-contents/{id}
    • 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. Team member

getApiTeamMembers

GET
/api/team-members

Request

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

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/team-members' \
--header 'Authorization: Bearer <token>'
Response Response Example
[
    {
        "id": "a1ce7b1c-ada9-4210-b352-d1122f4e71ba",
        "name": "Mrs. Casandra Kautzer",
        "email": "dking@example.com",
        "tenant": {
            "id": "e6d9b9da-db0c-457d-b9be-c6eff07eb483",
            "name": "Prosacco-Treutel",
            "domains": [],
            "bandwidth": 881,
            "bandwidth_period": "monthly",
            "bandwidth_changeover_date": null,
            "customers_limit": 90,
            "channels_limit": 44,
            "transcoder_channels": null,
            "transcoder_hours": null,
            "storage": 942,
            "allow_paywall": false,
            "suspended_at": null,
            "deleted_at": null
        },
        "suspended_at": null
    },
    {
        "id": "a1ce7b1c-bf5c-4f59-8c6b-8c6de9e96edc",
        "name": "Prof. Trystan Maggio",
        "email": "hahn.vita@example.com",
        "tenant": {
            "id": "a08c2a10-e5c6-4f14-b3f8-1bffb27589e0",
            "name": "Jenkins-Nolan",
            "domains": [],
            "bandwidth": 449,
            "bandwidth_period": "monthly",
            "bandwidth_changeover_date": null,
            "customers_limit": 22,
            "channels_limit": 93,
            "transcoder_channels": null,
            "transcoder_hours": null,
            "storage": 222,
            "allow_paywall": false,
            "suspended_at": null,
            "deleted_at": null
        },
        "suspended_at": null
    }
]
Previous
deleteApiChannelsChannel_idPublishersId
Next
postApiTeamMembers
Built with