MuleSoft · Example Payload

Mulesoft Createenvironment Example

API GatewayAPI ManagementEnterpriseIntegration

Mulesoft Createenvironment Example is an example object payload from MuleSoft, 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": "createEnvironment",
  "method": "POST",
  "path": "/accounts/api/organizations/{orgId}/environments",
  "summary": "Mulesoft Create Environment",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "CreateenvironmentRequestExample",
      "example": {
        "name": "Example Title",
        "type": "design"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "name": "Createenvironment201Example",
      "example": {
        "id": "abc123",
        "name": "Example Title",
        "organizationId": "500123",
        "isProduction": true,
        "type": "design",
        "clientId": "500123",
        "createdAt": "2026-01-15T10:30:00Z",
        "updatedAt": "2026-01-15T10:30:00Z"
      }
    }
  ]
}