Skip to main content
POST
/
external_api
/
pro
/
offers
/
{offerId}
/
credentials
/
add_batch
Add credentials to existing ones (batch add)
curl --request POST \
  --url https://skycoach.gg/external_api/pro/offers/{offerId}/credentials/add_batch \
  --header 'Accept: <accept>' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "credentials": [
    {
      "login": "user@example.com",
      "game_password": "SecurePass123",
      "email": "jsmith@example.com",
      "email_password": "<string>",
      "is_2fa_active": true,
      "comment": "<string>"
    }
  ]
}
'
{
  "message": "Successfully added 8 credentials. 2 duplicates were skipped."
}

Documentation Index

Fetch the complete documentation index at: https://api.skycoach.gg/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Headers

Accept
enum<string>
default:application/json
required

API response format

Available options:
application/json

Path Parameters

offerId
integer
required
Example:

123

Body

application/json
credentials
object[]
required
Required array length: 1 - 1000 elements

Response

Success

message
string
Example:

"Successfully added 8 credentials. 2 duplicates were skipped."