Microsoft Dynamics NAV · Example Payload

Navision Addnotificationrecipient Example

Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision

Navision Addnotificationrecipient Example is an example object payload from Microsoft Dynamics NAV, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "addNotificationRecipient",
  "method": "POST",
  "path": "/applications/{applicationFamily}/environments/{environmentName}/notifications",
  "summary": "Add a Notification Recipient",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "AddnotificationrecipientRequestExample",
      "example": {
        "id": "abc123",
        "name": "Example Title",
        "email": "user@example.com"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Addnotificationrecipient201Example",
      "example": {
        "id": "abc123",
        "name": "Example Title",
        "email": "user@example.com"
      }
    }
  ]
}