FeasOJ
🇺🇸 English
  • 🇨🇳 Chinese
  • 🇺🇸 English
  1. Competition
FeasOJ
🇺🇸 English
  • 🇨🇳 Chinese
  • 🇺🇸 English
  • Competition
    • Get list of competition
      GET
    • Get whether the user is in a competition
      GET
    • Get participating users of the competition
      GET
    • Get competition info
      GET
    • Get problems of competition
      GET
    • Join competition
      POST
    • Join competition with password
      POST
    • Quit competition
      POST
  • Users
    • Update password
      PUT
    • Update avatar
      PUT
    • Get user submit records within 30 days
      GET
    • Get user info
      GET
    • Update synopsis
      PUT
  • Problem
    • Get all problems
      GET
    • Get all info of a given problem id
      GET
    • Upload code
      POST
  • SubmitRecords
    • Get all of submit records within 30 days
  • Discussion
    • Comment
      • Get comments on the discussion
      • Add comment
      • Delete comment
    • Add Discussion
    • Delete Discussion
    • Get all discussion
    • Get discussion info
  • Administrator
    • Competition
      • Scoring Competition
        GET
      • Get competition score board
        GET
      • Get list of competition
        GET
      • Get competition info
        GET
      • Add/Update competition info
        POST
      • Delete competition
        DELETE
    • Problem
      • Get all problems
      • Get all info of a given problem id
      • Add/Update problem info
      • Delete problem
    • Users
      • Get all user details
      • Promote user
      • Demote user
      • Ban user
      • Unban user
    • Get IP Statistics
      GET
  • Login
    GET
  • Get ranking
    GET
  • Get captcha
    GET
  • Verify user info
    GET
  • SSE Notice Service
    GET
  • Register
    POST
  1. Competition

Get competition info

GET
http://127.0.0.1:37881/api/v1/admin/competitions/{cid}
Last modified:2025-01-13 17:09:08

Request

Path Params
cid
string 
required
Header Params
username
string 
required
Authorization
string 
required

Responses

🟢200OK
application/json
Body
contest
object 
required
contest_id
integer 
required
title
string 
required
subtitle
string 
required
difficulty
string 
required
password
string 
required
have_password
boolean 
required
is_visible
boolean 
required
start_at
string 
required
end_at
string 
required
Example
{
    "contest": {
        "contest_id": 1,
        "title": "第一次练习",
        "subtitle": "22计算机3班",
        "difficulty": "简单",
        "password": "123456",
        "have_password": true,
        "is_visible": true,
        "start_at": "2024-08-19T00:00:00+08:00",
        "end_at": "2024-09-19T00:00:00+08:00"
    }
}
Previous
Get list of competition
Next
Add/Update competition info
Built with