saltedseacorn / ss_api_endpoint_takehome

Take-home challenge for SS. Create tables, model validations, and endpoints for an API only app. Authenticate w/ JWT
0 stars 1 forks source link

Create Endpoint: GET /tournaments/{tournament_id}/teams #6

Open saltedseacorn opened 3 years ago

saltedseacorn commented 3 years ago

Status 200 - Players Included:

{
  "data": [
    {
      "type": "teams",
      "id": 1,
      "attributes": {
        "name": "Central HS Panthers",
        "age_group": "U14"
      },
      "relationships": {
        "players": {
          "data": [
            {
              "type": "players",
              "id": 3
            },
            {
              "type": "players",
              "id": 4
            }
          ]
        }
      }
    }
  ],
  "included": [
    {
      "id": "1006871125",
      "type": "players",
      "attributes": {
        "first_name": "Kevin",
        "last_name": "Jackson",
        "height": null,
        "weight": null,
        "graduation_year": 2022,
        "position": null,
        "jersey_number": null,
        "high_school": null,
        "gpa": null,
        "birthday": "2020-01-01",
        "recruit": true
      }
    },
    {
      "id": "1006871126",
      "type": "players",
      "attributes": {
        "first_name": "Daniel",
        "last_name": "Ludmerer",
        "height": null,
        "weight": null,
        "graduation_year": 2020,
        "position": null,
        "jersey_number": null,
        "high_school": null,
        "gpa": null,
        "birthday": "2020-01-01",
        "recruit": true
      }
    },
    {
      "id": "1006871127",
      "type": "players",
      "attributes": {
        "first_name": "Paul",
        "last_name": "Allen",
        "height": null,
        "weight": null,
        "graduation_year": 2021,
        "position": null,
        "jersey_number": null,
        "high_school": null,
        "gpa": null,
        "birthday": "2020-01-01",
        "recruit": true
      }
    }
  ]
}

Status 200 - Players Excluded:

{
  "data": [
    {
      "id": "790060",
      "type": "teams",
      "attributes": {
        "name": "Orlando, FL - 2020 Fall Showcase",
        "age_group": "N/A"
      },
      "relationships": {
        "players": {
          "data": [
            {
              "id": "1006871125",
              "type": "players"
            },
            {
              "id": "1006871126",
              "type": "players"
            },
            {
              "id": "1006871127",
              "type": "players"
            },
            {
              "id": "1006871128",
              "type": "players"
            },
            {
              "id": "1006871129",
              "type": "players"
            },
            {
              "id": "1006871130",
              "type": "players"
            },
            {
              "id": "1006871131",
              "type": "players"
            }
          ]
        }
      }
    },
    {
      "id": "790061",
      "type": "teams",
      "attributes": {
        "name": "Hartford, CT - October 2020 Fall Showcase",
        "age_group": "N/A"
      },
      "relationships": {
        "players": {
          "data": [
            {
              "id": "1006871132",
              "type": "players"
            },
            {
              "id": "1006871133",
              "type": "players"
            },
            {
              "id": "1006871134",
              "type": "players"
            }
          ]
        }
      }
    },
    {
      "id": "790062",
      "type": "teams",
      "attributes": {
        "name": "Player Evaluation",
        "age_group": "N/A"
      },
      "relationships": {
        "players": {
          "data": [
            {
              "id": "1006871135",
              "type": "players"
            }
          ]
        }
      }
    }
  ]
}