Creatopy Public API
  • Public API
    • Quickstart
    • Authentication
  • REST API
    • Overview
    • Auth
    • Exports
      • Creatives
    • Templates (Designs)
      • Elements
      • Template Sizes
      • Font variants
    • ShareLink
    • Projects
      • Project Users
    • Brand Kits
      • Brand kit assets
      • Brand kit logos
      • Brand kit media folders
      • Brand templates
    • Ad Networks
    • Ad Serving
    • Users
      • Team roles
    • Webhooks
      • Webhook action types
    • Design Versions
    • Folders
      • Move design to folder
    • Error codes
    • Designs
  • GraphQL API
    • Overview
    • Endpoints and queries
    • Postman Collection
Powered by GitBook
On this page
  • List team roles
  • Request
  • Response
  1. REST API
  2. Users

Team roles

List team roles

This endpoint makes an HTTP GET request to retrieve a list of team roles.

Request Body This request does not require a request body.

Request

  • Endpoint: https://api.creatopy.com/v1/teamRoles

Response

  • Status: 200

  • Content-Type: application/json

The response will contain an array of team roles, where each role is represented by an object with "id" and "name" properties.

Example response:

{
    "response": [
        {   
            "id": 1,
            "name": "Admin"
        },
        {
            "id": 2,
            "name": "Viewer"
        }
    ]
}
PreviousUsersNextWebhooks

Last updated 5 months ago