Logic App Integration Account Swagger with full examples on GitHub

Recently the REST API specifications for Logic App Integration Account was refresh at: https://github.com/Azure/azure-rest-api-specs/blob/master/arm-logic/2016-06-01/swagger/logic.json

This week full examples for the same have been published at:

https://github.com/Azure/azure-rest-api-specs/tree/master/arm-logic/2016-06-01/examples

For each resource in the Integration Account (partner, agreement, certificate, map, ...) and each operation (create/update, get, list, delete) the json files show you example response from the service, like this for a get operation on an instance of the partner resource:

 

 {
   "parameters":{
      "api-version":"2016-06-01",
      "resourceGroupName":"testResourceGroup",
      "subscriptionId":"34adfa4f-cedf-4dc0-ba29-b6d1a69ab345",
      "integrationAccountName":"testIntegrationAccount",
      "partnerName":"testPartner"
   },
   "responses":{
      "200":{
         "body":{
            "properties":{
               "partnerType":"B2B",
               "content":{
                  "b2b":{
                     "businessIdentities":[
                        {
                           "qualifier":"AA",
                           "value":"ZZ"
                        }
                     ]
                  }
               },
               "createdTime":"2017-03-06T20:01:24.0517156Z",
               "changedTime":"2017-03-06T20:01:24.0525141Z",
               "metadata": {}
            },
            "id":"/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Logic/integrationAccounts/testIntegrationAccount/partners/testPartner",
            "name":"testIntegrationAccount",
            "type":"Microsoft.Logic/integrationAccounts/partners"
         }
      }
   }
}

The Azure Documentation pages have been automatically updated with the same under /en-us/rest/api/logic/ (navigate to Integration Account resources with the left hand side vertical menu).

These are helpful references if you want to hit the REST APIs directly from your client, rather than use the .NET SDK or Azure PowerShell cmdlets.