Skip to main content
POST
/
api
/
v1
/
projects
/
{id}
/
usernames
/
add
Add usernames to project
curl --request POST \
  --url https://api.yapcoder.com/api/v1/projects/{id}/usernames/add \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "items": [
    "<string>"
  ]
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer<int64>
required

Body

application/json
items
string[]
required

Response

Usernames added successfully

message
string