Events

Register the URL for the game to receive notifications

Register the URL for the game to receive notifications

POST/v1/webhook
Header parameters
Body
urlstring (string)

url to send service events to

authorizationHeaderNamestring (string)

header name to pass for authorization (if any)

authorizationKeystring (string)

authorization header value (if any)

Response

Success

Body
urlstring (string)

url to send service events to

authorizationHeaderNamestring (string)

header name to pass for authorization (if any)

authorizationKeystring (string)

authorization header value (if any)

Response
{
  "url": "text",
  "authorizationHeaderName": "text",
  "authorizationKey": "text"
}

Update the URL for the game to receive notifications

Update the URL for the game to receive notifications

PUT/v1/webhook/{titleId}
Path parameters
titleId*string
Header parameters
Body
urlstring (string)

url to send service events to

authorizationHeaderNamestring (string)

header name to pass for authorization (if any)

authorizationKeystring (string)

authorization header value (if any)

Response

Success

Body
urlstring (string)

url to send service events to

authorizationHeaderNamestring (string)

header name to pass for authorization (if any)

authorizationKeystring (string)

authorization header value (if any)

Response
{
  "url": "text",
  "authorizationHeaderName": "text",
  "authorizationKey": "text"
}

Remove the URL for the game to receive notifications

Remove the URL for the game to receive notifications

DELETE/v1/webhook/{titleId}
Path parameters
titleId*string
Header parameters
Response

Success

Last updated