Instructional_Video
Instructional Video Instructors

Instructional Video Instructors

Create an Instructional Video Instructor

POST
/v1/admin/instructional_videos_instructors
💡
This request requires “PB-API-TOKEN” from the platforms.
Request
{
  "payload": {
    "firstName": "John",
    "lastName": "Doe",
    "middleInitial": "M",
    "suffix": "JR",
    "bio": "This is instructors biography",
    "imageUrl": "https://images.pickleball.com/placeholder/pickleball.png"
  }
}
Request
{
  "result": {
    "uuid": "0a13b3a7-a830-419f-9742-ba20a38664c1",
    "firstName": "John",
    "lastName": "Doe",
    "middleInitial": "M",
    "suffix": "JR",
    "bio": "This is instructors biography",
    "imageUrl": "https://images.pickleball.com/placeholder/pickleball.png",
    "dateArchived": "2023-09-11T19:28:58.244013984Z",
    "dateCreated": "2023-09-11T19:28:58.244013984Z",
    "dateUpdated": "2023-09-11T19:28:58.244013984Z",
    "createdByFullName": "",
    "updatedByFullName": "",
    "archivedByFullName": ""
  }
}

List Instructional Video Instructors

GET
/v1/data/instructional_videos_instructors
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.

Query parameters:

NameDescription
page_sizeNumber value that represents number of returned results
current_pageNumber value that represents offset of returned results
Request
Empty 
Response
{
  "totalRecords": "2",
  "results": [
    {
      "uuid": "7261da1e-dcbb-4139-ae9e-5c1a370ac54c",
      "firstName": "John",
      "lastName": "Doed",
      "middleInitial": "M",
      "suffix": "JR",
      "bio": "This is instructors bio",
      "imageUrl": "https://images.pickleball.com/placeholder/pickleball.png",
      "dateArchived": "2023-09-11T19:28:58.244013984Z",
      "dateCreated": "2023-09-11T19:28:58.244013984Z",
      "dateUpdated": "2023-09-11T19:28:58.244013984Z",
      "createdByFullName": "",
      "updatedByFullName": "",
      "archivedByFullName": ""
    },
  ]
}

List a Single Instructional Video Instructor

GET
/v1/data/instructional_videos_instructors/{uuid}
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Response
{
   "totalRecords": "1",
   "results": [
      {
        "uuid": "d165dcca-0127-4bac-8e72-cb744eae1847",
        "firstName": "John",
        "lastName": "Doed",
        "middleInitial": "M",
        "suffix": "JR",
        "bio": "",
        "imageUrl": "",
        "dateCreated": "2023-09-11T19:28:58.244013984Z",
        "dateArchived": "2023-09-11T19:28:58.244013984Z",
        "dateUpdated": "2023-09-11T19:28:58.244013984Z",
        "createdByFullName": "",
        "updatedByFullName": "",
        "archivedByFullName": ""
      }
  ]
}

Update an Instructional Video Instructor

{PUT}
/v1/admin/instructional_videos_instructors/{uuid}
💡
This request requires “PB-API-TOKEN” from the platforms.
Request
Empty 
Response
{
  "payload":{
    "uuid": "0a13b3a7-a830-419f-9742-ba20a38664c1",
    "firstName": "John",
    "lastName": "Doe",
    "middleInitial": "M",
    "suffix": "JR",
    "bio": "This is instructors biography",
    "imageUrl": "https://images.pickleball.com/placeholder/pickleball.png"
  }
}
Response
{
  "result": {
    "uuid": "0a13b3a7-a830-419f-9742-ba20a38664c1",
    "firstName": "John",
    "lastName": "Doe",
    "middleInitial": "M",
    "suffix": "JR",
    "bio": "This is instructors biography",
    "imageUrl": "https://images.pickleball.com/placeholder/pickleball.png",
    "dateArchived": "2023-09-11T19:28:58.244013984Z",
    "dateCreated": "2023-09-11T19:28:58.244013984Z",
    "dateUpdated": "2023-09-11T19:28:58.244013984Z",
    "createdByFullName": "",
    "updatedByFullName": "",
    "archivedByFullName": ""
  }
}