Puppy Bowl (1.1.0)

Welcome to the annual Puppy Bowl! Teams of puppies will compete in a variety of events, including fetching sticks, wagging tails, and looking adorable!

API Usage

The URL to access a resource in the API is structured as follows:

  • The base URL is https://fsa-puppy-bowl.herokuapp.com/api/.
  • The next segment is your cohort code. e.g. /2803-PUPPIES
  • The last segment is based on the resource you want to access. e.g. /players

For example, the URL for all players for the 2803 cohort would be:

https://fsa-puppy-bowl.herokuapp.com/api/2803-PUPPIES/players

Response Schema

If a request is successful, the response will be structured as follows:

{
  "success": true,
  "data": /* whatever you requested */
}

If an error occurs, the response will be structured as follows:

{
  "success": false,
  "error": {
    "name": "ErrorName",
    "message": "This is an error message."
  }
}

Players

The stars of the show! Get information about the puppies playing in the Puppy Bowl, or draft your own team of puppies to compete!

Get all players

Responses

Response Schema: application/json
Array of objects

Response samples

Content type
application/json
{}

Invite a new player

Request Body schema: application/json
required
name
required
string

The name of the puppy

breed
required
string

The breed of the puppy

status
string
Enum: "bench" "field"

The status of the puppy.

  • "bench": The puppy is currently on the bench. (default)
  • "field": The puppy is currently playing in the field.
imageUrl
string

The URL to an image of the puppy

teamId
number or null

The ID of the team this puppy is on, or null if not on a team

Responses

Request samples

Content type
application/json
{}

Response samples

Content type
application/json
{}

Get a player by ID

path Parameters
id
required
number
Example: 123

The ID of the player to retrieve

Responses

Response Schema: application/json
object

Response samples

Content type
application/json
{}

Remove a player by ID

path Parameters
id
required
number
Example: 123

The ID of the player to remove

Responses

Teams

The teams competing in the Puppy Bowl! Check out the current score and players on each team.

Get all teams

Responses

Response Schema: application/json
Array of objects

Response samples

Content type
application/json
{}