LinkedIn · Schema

UpdateCallbackUrlRequest

Request body for updating OAuth 2.0 callback URLs

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
patch object
View JSON Schema on GitHub

JSON Schema

linkedin-updatecallbackurlrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateCallbackUrlRequest",
  "title": "UpdateCallbackUrlRequest",
  "type": "object",
  "description": "Request body for updating OAuth 2.0 callback URLs",
  "required": [
    "patch"
  ],
  "properties": {
    "patch": {
      "type": "object",
      "properties": {
        "$set": {
          "type": "object",
          "properties": {
            "oauth2AuthorizedCallbackUrls": {
              "type": "array",
              "items": {
                "type": "string",
                "format": "uri"
              },
              "example": [
                "https://app.acme.com/oauth2/callback",
                "https://new-domain.acme.com/oauth2/callback"
              ]
            }
          }
        }
      }
    }
  }
}