Skip to main content
GET
/
Projects
/
{YourAPIKEY}
Get Projects
curl --request GET \
  --url https://intern.payingame.io/rest/PayIngame/PublicAPI/Projects/{YourAPIKEY}
{
  "isError": "will be 0 or 1",
  "Projects": [
    {
      "Guid": "XXXX-XXXXX-XXXXXX",
      "Name": "My Game"
    }
  ],
  "Error": "Empty if no error, otherwise Error string"
}

Path Parameters

YourAPIKEY
string
required

Will be your Test or Production API Key

Response

200 - application/json

List of active Projects

isError
string
required
Example:

"will be 0 or 1"

Projects
object[]
required

Will not be available in case of an error

Error
string
required
Example:

"Empty if no error, otherwise Error string"

I