latestOpenAPI 3.0.02026-08-0819201.1 MB

411f9f98c01e

recipe deployments

Returns the Recipe Deployment based on the specified Recipe Deployment Id

You need workspace memberships to access this resource

  • global.recipe_deployment.get permission in the tenant scope allows to get any recipe deployment in the user tenant
  • global.recipe_deployment.get permission in the global scope allows to delete any recipe deployment in all tenants
get/recipe-deployments/{recipe_deployment_id}

Path parameters

recipe_deployment_idstring required

Recipe Deployment identifier

Response

OK

Example response

{
  "data": {
    "id": "5b4f337bff4304610483ba67",
    "links": {
      "self": "/v2/recipe_deployment/5b4f337bff4304610483ba67"
    },
    "attributes": {
      "name": "My simple recipe deployment",
      "recipe_version": 3,
      "flows": [
        {
          "id": "5b4f337bff4304610483ba67"
        }
      ],
      "created_at": "2021-12-10T10:29:15.008Z",
      "updated_at": "2021-12-10T14:40:03.389Z"
    },
    "relationships": {
      "recipe": {
        "data": {
          "id": "5b4f337bff4304610483ba67"
        },
        "links": {
          "self": "/v2/recipes/5b4f337bff4304610483ba67"
        }
      },
      "workspace": {
        "data": {
          "id": "5b4f337bff4304610483ba67"
        },
        "links": {
          "self": "/v2/workspaces/5b4f337bff4304610483ba67"
        }
      }
    }
  }
}