---
sourceDocument: Yokohama API Reference
sourceDocumentLink: https://www.servicenow.com/docs/r/yokohama/api-reference

 Release :

    - yokohama

ft:locale :

    - en-US

ft:publication_title :

    - Yokohama API Reference

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# DevOps Config API

# DevOps Config API {#ariaid-title1}

* Release version: Yokohama
* 
* Updated January 30, 2025
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 11 minutes to read

The DevOps Config API provides endpoints to manage your
applications.
This API requires the DevOps Config application and is provided within the
`sn_devops_config` namespace.

For DELETE, PATCH, and POST operations, the calling user must have the sn_devops_config.admin
role. For GET operations, the calling user must have the sn_devops_config.viewer or
sn_devops_config.admin role.

Use the DevOps Config API for application life cycle management. For more information about managing applications with DevOps Config, see [Configuring DevOps Config](https://www.servicenow.com/docs/access?context=setting-up-devops-config-validation&version=yokohama&pubname=yokohama-it-service-management&ft:locale=en-US).

## DevOps Config - DELETE /devops_config/application/{appid} {#ariaid-title2}

Deletes an application.

### URL format

Versioned URL: /api/sn_devops_config/{api_version}/devops_config/application/{appid}

Default URL:
/api/sn_devops_config/devops_config/application/{appid}  
Note:  
Available versions are specified in the [REST API Explorer](https://www.servicenow.com/docs/VV5d3pcHRv4pFxM~yEJQZA "In this tutorial you will use the REST API Explorer to test the ServiceNow REST APIs."). For scripted REST APIs there is additional version information on the [Scripted REST Service form](https://www.servicenow.com/docs/cpRBis~pwSIJPZVsP8Hkxw "The scripted REST API feature allows application developers to build custom web service APIs.").

### Supported request parameters

{#devops-config-DELETE-app__entry__2}{#devops-config-DELETE-app__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
| appid | Sys_id of the application to delete. Data type: String Table: CDM Application \[sn_cdm_application\] |
[Table 1. Path parameters]

{#devops-config-DELETE-app__entry__8}

| Name | Description |
|-|-|
| None |   |
[Table 2. Query parameters]

{#devops-config-DELETE-app__entry__12}

| Name | Description |
|-|-|
| None |   |
[Table 3. Request body parameters (JSON)]

### Headers

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://www.servicenow.com/docs/aXidvjgEVmS~V~ZL0h85lQ "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#devops-config-DELETE-app__table_kwn_v1r_fvb__entry__2}{#devops-config-DELETE-app__accept-JSON-only-entry-RESTAPI}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Only supports application/json. |
[Table 4. Request headers]

{#devops-config-DELETE-app__table_kwn_v1r_fvb} {#devops-config-DELETE-app__entry__20}

| Header | Description |
|-|-|
| None |   |
[Table 5. Response headers]

### Status codes

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://www.servicenow.com/docs/aXidvjgEVmS~V~ZL0h85lQ "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#devops-config-DELETE-app__table_egh_yyl_gvb__entry__2}{#devops-config-DELETE-app__entry-200-status-code}

| Status code | Description |
|-|-|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad request. Invalid application id. |
| 403 | Forbidden. The user doesn't have permission to access the API. |
[Table 6. Status codes]

{#devops-config-DELETE-app__table_egh_yyl_gvb}

### Response body parameters (JSON)

{#devops-config-DELETE-app__table_z3v_z5d_gvb__entry__2}

| Name | Description |
|-|-|
| error | Error information. This parameter is only returned if the request failed. Data type: Object "error": { "detail": "String", "message": "String" } |
| error.detail | Additional details about why the request failed. Data type: String |
| error.message | Error message containing the reason the request failed. Data type: String |
| result | Result object containing information about the request. Data type: Object "result": { "errors": [Array], "success": [Array] } |
| result.errors | Array of errors from the request. The array is empty for successful requests. Data type: Array |
| result.success | Success message for the request. The array is empty for failed requests. Data type: Array |
| status | Status of the request. This parameter is only returned if the request failed. Possible value: failure Data type: String |
[ ]

{#devops-config-DELETE-app__table_z3v_z5d_gvb}  

### cURL request

This example deletes an application.

    curl "https://instance.service-now.com/api/sn_devops_config/devops_config/application/38e17dc3473d111072566862736d43c7" \ 
    --request DELETE \ 
    --header "Accept:application/json" \ 
    --user 'username':'password' 

Response body.

    { 
      "result": { 
        "errors": [], 
        "success": [ 
          "CDM Application Demo Application 1234 has been deleted successfully." 
        ] 
      } 
    }

### cURL request {#devops-config-DELETE-app__example_ssd_qph_hvb}

This example shows an error response when a user doesn't have permission to access the
API.

    curl "https://instance.service-now.com/api/sn_devops_config/devops_config/application/38e17dc3473d111072566862736d43c7" \ 
    --request DELETE \ 
    --header "Accept:application/json" \ 
    --user 'username':'password' 

Error response.

    { 
      "error": { 
        "message": "User Not Authorized", 
        "detail": "Failed API level ACL Validation" 
      }, 
      "status": "failure" 
    }

## DevOps Config - GET /devops_config/application/{appid} {#ariaid-title3}

Retrieves an application.

### URL format

Versioned URL: /api/sn_devops_config/{api_version}/devops_config/application/{appid}

Default URL:
/api/sn_devops_config/devops_config/application/{appid}  
Note:  
Available versions are specified in the [REST API Explorer](https://www.servicenow.com/docs/VV5d3pcHRv4pFxM~yEJQZA "In this tutorial you will use the REST API Explorer to test the ServiceNow REST APIs."). For scripted REST APIs there is additional version information on the [Scripted REST Service form](https://www.servicenow.com/docs/cpRBis~pwSIJPZVsP8Hkxw "The scripted REST API feature allows application developers to build custom web service APIs.").

### Supported request parameters

{#devops-config-GET-app__entry__2}{#devops-config-GET-app__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
| appid | Sys_id of the application to retrieve. Data type: String Table: CDM Application \[sn_cdm_application\] |
[Table 7. Path parameters]

{#devops-config-GET-app__entry__8}

| Name | Description |
|-|-|
| None |   |
[Table 8. Query parameters]

{#devops-config-GET-app__entry__12}

| Name | Description |
|-|-|
| None |   |
[Table 9. Request body parameters (JSON)]

### Headers

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://www.servicenow.com/docs/aXidvjgEVmS~V~ZL0h85lQ "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#devops-config-GET-app__table_kwn_v1r_fvb__entry__2}{#devops-config-GET-app__accept-JSON-only-entry-RESTAPI}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Only supports application/json. |
[Table 10. Request headers]

{#devops-config-GET-app__table_kwn_v1r_fvb} {#devops-config-GET-app__entry__20}

| Header | Description |
|-|-|
| None |   |
[Table 11. Response headers]

### Status codes

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://www.servicenow.com/docs/aXidvjgEVmS~V~ZL0h85lQ "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#devops-config-GET-app__entry__24}{#devops-config-GET-app__entry-200-status-code}

| Status code | Description |
|-|-|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad request. Invalid application id. |
| 403 | Forbidden. The user doesn't have permission to access the API. |
[Table 12. Status codes]

### Response body parameters (JSON)

{#devops-config-GET-app__table_z3v_z5d_gvb__entry__2}

| Name | Description |
|-|-|
| error | Error information. This parameter is only returned if the request failed. Data type: Object "error": { "detail": "String", "message": "String" } |
| error.detail | Additional details about why the request failed. Data type: String |
| error.message | Error message containing the reason the request failed. Data type: String |
| result | Result object containing information about the request. Data type: Object "result": { "data": {Object}, "message": "String", "status": Number } |
| result.data | Data for the application. Data type: Object "data": { "appDescription": "String", "appId": "String", "appManagedByGroups": [Array], "appManufacturerId": "String", "appManufacturerName": "String", "appModelId": "String", "appModelName": "String", "appModelOwnerId": "String", "appModelOwnerName": "String", "appName": "String", "sdlcType": "String" } |
| result.data.appDescription | Description of the application. Data type: String |
| result.data.appId | Sys_id of the application. Data type: String Table: CDM Application \[sn_cdm_application\] |
| result.data.appManagedByGroups | Comma-separated list of sys_ids of the groups that manage the application. Data type: String Table: Group \[sys_user_group\] |
| result.data.appManufacturerId | Sys_id of the manufacturer. Data type: String Table: Company \[core_company\] |
| result.data.appManufacturerName | Name of the manufacturer. Data type: String |
| result.data.appModelId | Sys_id of the application model. Data type: String Table: Application Model \[cmdb_application_product_model\] |
| result.data.appModelName | Name of the application model. Data type: String Table: Application Model \[cmdb_application_product_model\] |
| result.data.appModelOwnerId | Sys_id of the application model owner. Data type: String Table: User \[sys_user\] |
| result.data.appModelOwnerName | Name of the application model owner. Data type: String |
| result.data.appName | Name of the application. Data type: String |
| result.data.error | Error information. This parameter is only returned if the request failed. Data type: String |
| result.data.sdlcType | Type of application. Possible values: * application * infrastructure {#devops-config-GET-app__ul_rt4_x3q_dvb} Data type: String |
| result.message | Information about the successful or unsuccessful outcome of the request. Data type: String |
| result.status | Status code for the request. Possible values: * 200 * 400 * 403 {#devops-config-GET-app__ul_cvg_nkh_hvb} Data type: Number |
| status | Status of the request. This parameter is only returned if the request failed. Possible value: failure Data type: String |
[ ]

{#devops-config-GET-app__table_z3v_z5d_gvb}  

### cURL request

This example retrieves an application.

    curl "https://instance.service-now.com/api/sn_devops_config/devops_config/application/38e17dc3473d111072566862736d43c7" \ 
    --request GET \ 
    --header "Accept:application/json" \ 
    --user 'username':'password' 

Response body.

    { 
      "result": { 
        "status": 200, 
        "message": "Success", 
        "data": { 
          "appName": "Demo Application 1234", 
          "appId": "38e17dc3473d111072566862736d43c7", 
          "appDescription": "Updated description of Demo Application created from REST API", 
          "sdlcType": "application", 
          "appModelId": "a4e13dc3473d111072566862736d4307", 
          "appModelName": "Demo Application 1234", 
          "appManufacturerId": "262702654725d950a34a3085d36d435e", 
          "appManufacturerName": "", 
          "appModelOwnerId": "6816f79cc0a8016401c5a33be04be441", 
          "appModelOwnerName": "System Administrator", 
          "appManagedByGroups": [] 
        } 
      } 
    }

### cURL request {#devops-config-GET-app__example_wfs_2qh_hvb}

This example shows an error response when a user provides an invalid application id.

    curl "https://instance.service-now.com/api/sn_devops_config/devops_config/application/18a17de3283d15107256686277777777" \ 
    --request GET \ 
    --header "Accept:application/json" \ 
    --user 'username':'password' 

Error response.

    { 
      "result": { 
        "status": 400, 
        "message": "No valid Application", 
        "data": { 
          "error": "No valid Application" 
        } 
      } 
    }

## DevOps Config - PATCH /devops_config/application/{appid} {#ariaid-title4}

Updates an application.

### URL format

Versioned URL: /api/sn_devops_config/{api_version}/devops_config/application/{appid}

Default URL:
/api/sn_devops_config/devops_config/application/{appid}  
Note:  
Available versions are specified in the [REST API Explorer](https://www.servicenow.com/docs/VV5d3pcHRv4pFxM~yEJQZA "In this tutorial you will use the REST API Explorer to test the ServiceNow REST APIs."). For scripted REST APIs there is additional version information on the [Scripted REST Service form](https://www.servicenow.com/docs/cpRBis~pwSIJPZVsP8Hkxw "The scripted REST API feature allows application developers to build custom web service APIs.").

### Supported request parameters

{#devops-config-PATCH-app__entry__2}{#devops-config-PATCH-app__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
| appid | Sys_id of the application to update. Data type: String Table: CDM Application \[sn_cdm_application\] |
[Table 13. Path parameters]

{#devops-config-PATCH-app__entry__8}

| Name | Description |
|-|-|
| None |   |
[Table 14. Query parameters]

{#devops-config-PATCH-app__entry__12}{#devops-config-PATCH-app__app-descr}{#devops-config-PATCH-app__app-mfct}{#devops-config-PATCH-app__app-owner-id}

| Name | Description |
|-|-|
| appDescription | Description of the application. Data type: String |
| appManagedByGroups | Comma-separated list of sys_ids of the groups that manage the application. The calling user must belong to these groups. "appManagedByGroups": "sys_id, sys_id" Data type: String Table: Group \[sys_user_group\] |
| appManufacturerId | Sys_id of the manufacturer. Data type: String Table: Company \[core_company\] |
| appModelOwnerId | Sys_id of the application model owner. Data type: String Table: User \[sys_user\] |
[Table 15. Request body parameters (JSON)]

### Headers

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://www.servicenow.com/docs/aXidvjgEVmS~V~ZL0h85lQ "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#devops-config-PATCH-app__table_kwn_v1r_fvb__entry__2}{#devops-config-PATCH-app__accept-JSON-only-entry-RESTAPI}{#devops-config-PATCH-app__content_type-JSON-only-entry-RESTAPI}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Only supports application/json. |
| Content-Type | Data format of the request body. Only supports application/json. |
[Table 16. Request headers]

{#devops-config-PATCH-app__table_kwn_v1r_fvb} {#devops-config-PATCH-app__entry__28}

| Header | Description |
|-|-|
| None |   |
[Table 17. Response headers]

### Status codes

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://www.servicenow.com/docs/aXidvjgEVmS~V~ZL0h85lQ "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#devops-config-PATCH-app__table_jk3_y1r_fvb__entry__2}

| Status code | Description |
|-|-|
| 200 | Application successfully updated. |
| 403 | Forbidden. The user doesn't have permission to access the API. |
| 404 | Application not updated. The message property in the result object contains additional information about the error. |
[Table 18. Status codes]

{#devops-config-PATCH-app__table_jk3_y1r_fvb}

### Response body parameters (JSON) {#devops-config-PATCH-app__section_y3v_z5d_gvb}

{#devops-config-PATCH-app__table_z3v_z5d_gvb__entry__2}

| Name | Description |
|-|-|
| error | Error information. This parameter is only returned if the request failed. Data type: Object "error": { "detail": "String", "message": "String" } |
| error.detail | Additional details about why the request failed. Data type: String |
| error.message | Error message containing the reason the request failed. Data type: String |
| result | Result object containing information about the application. Data type: Object "result": { "data": "String", "message": "String" } |
| result.data | Sys_id of the application. Data type: String Table: CDM Application \[sn_cdm_application\] |
| result.message | Information about the successful or unsuccessful outcome of the request. Data type: String |
| status | Status of the request. This parameter is only returned if the request failed. Possible value: failure Data type: String |
[ ]

{#devops-config-PATCH-app__table_z3v_z5d_gvb}  

### cURL request

This example updates an existing application.

    curl "https://instance.service-now.com/api/sn_devops_config/devops_config/application/38e17dc3473d111072566862736d43c7" \ 
    --request PATCH \ 
    --header "Accept:application/json" \ 
    --header "Content-Type:application/json" \ 
    --data "{ 
      \"appDescription\": \"Updated description of Demo Application created from REST API\", 
      \"appManufacturerId\": \"262702654725d950a34a3085d36d435e\", 
      \"appModelOwnerId\": \"6816f79cc0a8016401c5a33be04be441\" 
    }" \ 
    --user 'username':'password' 

Response body.

    { 
      "result": { 
        "message": "Application with name Demo Application 1234 updated successfully.", 
        "data": "38e17dc3473d111072566862736d43c7" 
      } 
    }

## DevOps Config - POST /devops_config/application {#ariaid-title5}

Creates an application.

### URL format

Versioned URL: /api/sn_devops_config/{api_version}/devops_config/application

Default URL:
/api/sn_devops_config/devops_config/application  
Note:  
Available versions are specified in the [REST API Explorer](https://www.servicenow.com/docs/VV5d3pcHRv4pFxM~yEJQZA "In this tutorial you will use the REST API Explorer to test the ServiceNow REST APIs."). For scripted REST APIs there is additional version information on the [Scripted REST Service form](https://www.servicenow.com/docs/cpRBis~pwSIJPZVsP8Hkxw "The scripted REST API feature allows application developers to build custom web service APIs.").

### Supported request parameters

{#devops-config-POST-app__entry__2}{#devops-config-POST-app__version-not_optional-RESTAPI}

| Name | Description |
|-|-|
| api_version | Optional. Version of the endpoint to access. For example, <kbd class="ph userinput">v1</kbd> or <kbd class="ph userinput">v2</kbd>. Only specify this value to use an endpoint version other than the latest. Data type: String |
[Table 19. Path parameters]

{#devops-config-POST-app__entry__6}

| Name | Description |
|-|-|
| None |   |
[Table 20. Query parameters]

{#devops-config-POST-app__entry__10}{#devops-config-POST-app__app-descr}{#devops-config-POST-app__app-mfct}{#devops-config-POST-app__app-owner-id}

| Name | Description |
|-|-|
| appDescription | Description of the application. Data type: String |
| appManagedByGroups | Comma-separated list of sys_ids of the groups that manage the application. The calling user must belong to these groups. "appManagedByGroups": "sys_id, sys_id" Data type: String Table: Group \[sys_user_group\] |
| appManufacturerId | Sys_id of the manufacturer. Data type: String Table: Company \[core_company\] |
| appModelId | Sys_id of an existing application model to use to create the application. If this parameter is provided, don't provide the appName, appModelName, appServiceName, appServiceId, or technicalServiceId parameters. Data type: String Table:Application Model \[cmdb_application_product_model\] |
| appModelName | Name of an existing application model to use to create the application. If this parameter is provided, don't provide the appName, appModelId, appServiceName, appServiceId, or technicalServiceId parameters. Data type: String Table: Application Model \[cmdb_application_product_model\] |
| appModelOwnerId | Sys_id of the application model owner. Data type: String Table: User \[sys_user\] |
| appName | Name of the application. Don't use the same name as any existing application. If this parameter is provided, don't provide the appModelName, appModelId, appServiceName, appServiceId, or technicalServiceId parameters. Data type: String |
| appServiceId | Sys_id of an existing application service to use to create the application. Use this parameter only when the type is <kbd class="ph userinput">application</kbd>. If this parameter is provided, don't provide the appName, appModelName, appModelId, appServiceName, or technicalServiceId parameters. Data type: String Table: Service Instance \[cmdb_ci_service_auto\] |
| appServiceName | Name of an existing application service to use to create the application. Use this parameter only when the type is <kbd class="ph userinput">application</kbd>. If this parameter is provided, don't provide the appName, appModelName, appModelId, appServiceId, or technicalServiceId parameters. Data type: String Table: Service Instance \[cmdb_ci_service_auto\] |
| technicalServiceId | Sys_id of an existing dynamic CI group to use to create the application. Use this parameter only when the type is <kbd class="ph userinput">infrastructure</kbd>. If this parameter is provided, don't provide the appName, appModelName, appModelId, appServiceName, or appServiceId parameters. Data type: String Table: Dynamic CI Group \[cmdb_ci_query_based_service\] |
| type | Required. The type of application to create. Valid values: * application * infrastructure {#devops-config-POST-app__ul_rt4_x3q_dvb} Data type: String |
[Table 21. Request body parameters (JSON)]

### Headers

The following request and response headers apply to this HTTP
action only, or apply to this action in a distinct way. For a list of general headers used
in the REST API, see [Supported REST API headers](https://www.servicenow.com/docs/aXidvjgEVmS~V~ZL0h85lQ "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#devops-config-POST-app__entry__34}{#devops-config-POST-app__accept-JSON-only-entry-RESTAPI}{#devops-config-POST-app__content_type-JSON-only-entry-RESTAPI}

| Header | Description |
|-|-|
| Accept | Data format of the response body. Only supports application/json. |
| Content-Type | Data format of the request body. Only supports application/json. |
[Table 22. Request headers]

{#devops-config-POST-app__entry__40}

| Header | Description |
|-|-|
| None |   |
[Table 23. Response headers]

### Status codes

The following status codes apply to this HTTP action. For a
list of possible status codes used in the REST API, see [REST API HTTP response
codes](https://www.servicenow.com/docs/aXidvjgEVmS~V~ZL0h85lQ "REST (REpresentational State Transfer) is a simple stateless architecture that provides standards between computer systems on the web, making it easier for them to communicate with each other.").
{#devops-config-POST-app__entry__44}

| Status code | Description |
|-|-|
| 201 | Application successfully created. |
| 403 | Forbidden. The user doesn't have permission to access the API. |
| 404 | Application not created. The message property in the result object contains additional information about the error. |
[Table 24. Status codes]

### Response body parameters (JSON) {#devops-config-POST-app__section_y3v_z5d_gvb}

{#devops-config-POST-app__table_z3v_z5d_gvb__entry__2}

| Name | Description |
|-|-|
| error | Error information. This parameter is only returned if the request failed. Data type: Object "error": { "detail": "String", "message": "String" } |
| error.detail | Additional details about why the request failed. Data type: String |
| error.message | Error message containing the reason the request failed. Data type: String |
| result | Result object containing information about the application. Data type: Object "result": { "data": "String", "message": "String" } |
| result.data | Sys_id of the application. Data type: String Table: CDM Application \[sn_cdm_application\] |
| result.message | Information about the successful or unsuccessful outcome of the request. Data type: String |
| status | Status of the request. This parameter is only returned if the request failed. Possible value: failure Data type: String |
[ ]

{#devops-config-POST-app__table_z3v_z5d_gvb}  

### cURL request

This example shows how to create a new application.

    curl "https://instance.service-now.com/api/sn_devops_config/devops_config/application" \ 
    --request POST \ 
    --header "Accept:application/json" \ 
    --header "Content-Type:application/json" \ 
    --data "{ 
      \"type\": \"application\", 
      \"appName\": \"Demo Application 1234\", 
      \"appDescription\": \"Description of Demo Application created from REST API\", 
      \"appManufacturerId\": \"262702654725d950a34a3085d36d435e\", 
      \"appModelOwnerId\": \"6816f79cc0a8016401c5a33be04be441\" 
    }" \ 
    --user 'username':'password' 

Response body.

    { 
      "result": { 
        "message": "Application with name Demo Application 1234 created successfully.", 
        "data": "38e17dc3473d111072566862736d43c7" 
      } 
    } 


