game - Blocks
https://armchairanalysis.com/api/1.0/game/:gid/blocks
Parameter
Field | Type | Description |
---|---|---|
gid | number |
Game ID Size range: |
Success 200
Field | Type | Description |
---|---|---|
pid | number |
Play ID |
blk | string |
Blocker ID |
brcv | string |
Recovering Player ID |
type | string |
Play Type (PUNT, FG, XP) |
HTTP/1.1 200 OK
{
"data": [{
"pid":1435,
"blk":"JJ-4100",
"brcv":"TG-1500",
"type":"FG"
},
{...}]
}
Error 4xx
Field | Description |
---|---|
GameNotFound |
Game not found. |
BlocksNotFound |
Blocks not found. |
HTTP/1.1 404 Not Found
{
"error": {
"message":"Game not found.",
"status_code":404
}
}
HTTP/1.1 404 Not Found
{
"error": {
"message":"Blocks not found.",
"status_code":404
}
}