Skip to main content
POST
/
v1
/
games
/
contributions
Contribute game mappings
curl --request POST \
  --url https://api.magne.app/v1/games/contributions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "entries": [
    {
      "exeName": "<string>",
      "appId": "<string>",
      "gameName": "<string>"
    }
  ]
}
'
{
  "inserted": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json
entries
object[]
required

Response

Success

inserted
integer