Bearbeiten

Create automationCompany

Creates an automation company in Dynamics 365 Business Central.

HTTP request

Replace the URL prefix for Business Central depending on environment following the guideline.

POST /microsoft/automation/v2.0/companies({companyId})/automationCompanies

Request headers

Header Value
Authorization Bearer {token}. Required.
Content-Type application/json

Request body

In the request body, supply a JSON representation of a automationCompany object.

Response

If successful, this method returns 201 Created response code and a automationCompany object in the response body.

Example

Request

Here is an example of the request.

POST https://api.businesscentral.dynamics.com/v2.0/{environment name}/api/microsoft/automation/v2.0/companies({companyId})/automationCompanies
Content-type: application/json
{
    "name": "CRONUS",
    "displayName": "CRONUS",
    "businessProfileId": ""
}

Response

Here is an example of the response.

HTTP/1.1 201 Created
Content-type: application/json
{
    "id" : "666631a8-8775-eb11-bb56-000d3a298ab3",
    "name" : "CRONUS",
    "evaluationCompany" : false,
    "displayName" : "CRONUS",
    "businessProfileId" : ""
}

See Also

Tips for working with the APIs
automationCompany