From dd8c05b331e7d01e0ff63dc7e96570718efee194 Mon Sep 17 00:00:00 2001 From: hadar-co Date: Sun, 22 Dec 2024 19:18:49 +0200 Subject: [PATCH] Slack fixes (#1881) * add sorting entity input docs * update meta description of guide * update github backend limitations, update publish param in action routes --------- Co-authored-by: Hadar --- .../github-workflow/github-workflow.md | 28 +- .../add-a-log-to-an-action-run.api.mdx | 2 +- .../approve-an-action-run.api.mdx | 2 +- docs/api-reference/cancel-a-migration.api.mdx | 2 +- docs/api-reference/change-a-scorecard.api.mdx | 2 +- docs/api-reference/change-a-team.api.mdx | 2 +- docs/api-reference/change-an-entity.api.mdx | 2 +- docs/api-reference/change-scorecards.api.mdx | 2 +- docs/api-reference/create-a-scorecard.api.mdx | 2 +- docs/api-reference/create-a-team.api.mdx | 2 +- .../create-an-action-automation.api.mdx | 9281 +--------------- docs/api-reference/create-an-entity.api.mdx | 2 +- .../create-an-organization-secret.api.mdx | 2 +- docs/api-reference/create-credentials.api.mdx | 2 +- docs/api-reference/delete-a-scorecard.api.mdx | 2 +- docs/api-reference/delete-a-team.api.mdx | 2 +- docs/api-reference/delete-a-user.api.mdx | 2 +- ...delete-all-entities-of-a-blueprint.api.mdx | 2 +- .../delete-an-action-automation.api.mdx | 2 +- docs/api-reference/delete-an-entity.api.mdx | 2 +- .../delete-an-organization-secret.api.mdx | 2 +- docs/api-reference/delete-credentials.api.mdx | 2 +- .../execute-a-self-service-action.api.mdx | 2 +- .../get-a-blueprints-entity-count.api.mdx | 2 +- .../get-a-blueprints-permissions.api.mdx | 2 +- .../get-a-blueprints-scorecards.api.mdx | 2 +- docs/api-reference/get-a-migration.api.mdx | 2 +- docs/api-reference/get-a-scorecard.api.mdx | 2 +- docs/api-reference/get-a-team.api.mdx | 2 +- docs/api-reference/get-a-user.api.mdx | 2 +- .../api-reference/get-all-action-runs.api.mdx | 2 +- .../api-reference/get-all-credentials.api.mdx | 2 +- .../get-all-entities-of-a-blueprint.api.mdx | 2 +- .../get-all-organization-secrets.api.mdx | 2 +- ...get-all-teams-in-your-organization.api.mdx | 2 +- ...get-all-users-in-your-organization.api.mdx | 2 +- .../get-an-action-automation.api.mdx | 2 +- .../get-an-action-runs-approvers.api.mdx | 2 +- .../get-an-action-runs-details.api.mdx | 2 +- .../get-an-actions-permissions.api.mdx | 2 +- .../get-an-actions-run-logs.api.mdx | 2 +- docs/api-reference/get-an-entity.api.mdx | 2 +- .../get-an-integrations-audit-logs.api.mdx | 2 +- .../get-an-organization-secret.api.mdx | 2 +- ...invite-a-user-to-your-organization.api.mdx | 2 +- .../patch-a-blueprints-permissions.api.mdx | 2 +- docs/api-reference/patch-a-team.api.mdx | 2 +- docs/api-reference/patch-a-user.api.mdx | 2 +- .../api-reference/patch-an-action-run.api.mdx | 2 +- docs/api-reference/patch-an-entity.api.mdx | 2 +- .../patch-an-integration.api.mdx | 2 +- .../patch-an-organization-secret.api.mdx | 2 +- docs/api-reference/rotate-secret.api.mdx | 2 +- .../update-an-action-automation.api.mdx | 9324 +---------------- .../update-an-actions-permissions.api.mdx | 2 +- docs/api-reference/update-credentials.api.mdx | 2 +- static/apispec.yaml | 4 +- 57 files changed, 128 insertions(+), 18615 deletions(-) diff --git a/docs/actions-and-automations/setup-backend/github-workflow/github-workflow.md b/docs/actions-and-automations/setup-backend/github-workflow/github-workflow.md index e792bc8c5..39f57bcce 100644 --- a/docs/actions-and-automations/setup-backend/github-workflow/github-workflow.md +++ b/docs/actions-and-automations/setup-backend/github-workflow/github-workflow.md @@ -24,16 +24,6 @@ An example flow would be: 5. As part of the workflow, the new microservice `Deployment` is reported back to Port. 6. When the workflow is done, Port's GitHub application reports back to Port about the status of the action run (`SUCCESS` or `FAILURE`), according to workflow's status. -:::info triggering workflow chains -A workflow triggered using the `workflow_dispatch` trigger is self-contained. This means its actions and effects over the repository cannot trigger other automatic workflows. - -1. A developer invokes a "provision new microservice in monorepo" workflow. -2. The workflow opens a new PR in the target repository based on a pre-defined template. -3. The repository also has a workflow which is automatically triggered using the `on: pull_request: types: "opened"` trigger. -4. In this instance, the automatic PR workflow will not be triggered. - -::: - ## Configuration When using this backend, you need to provide the GitHub organization and repository where the workflow is located, as well as the workflow name. @@ -57,6 +47,24 @@ Additionally, you can define whether or not Port should automatically use the wo By default, this is set to `true`. To disable this option, set the `reportWorkflowStatus` field to `true` in the `invocationMethod` object, or set the `Report workflow status` option to `No` if using the UI. +## Limitations + +### Input limit + +A GitHub workflow can have **up to 10** input parameters. Note this when defining your payloads. +If you need more than 10 inputs, you can use a JSON object as a single parameter. + +### Workflow chains + +A workflow triggered using the `workflow_dispatch` trigger is self-contained. This means its actions and effects over the repository cannot trigger other automatic workflows. + +For example, take the following scenario: + +1. A developer executes a "Create a new microservice in a monorepo" workflow. +2. The workflow opens a new pull request in the target repository based on a pre-defined template. +3. The repository also has a workflow which is automatically triggered using the `on: pull_request: types: "opened"` trigger. +4. In this instance, the automatic PR workflow **will not** be triggered. + ## Examples For complete examples of self-service actions using a GitHub workflow as the backend, check out the [guides section](/guides?tags=GitHub&tags=Actions). diff --git a/docs/api-reference/add-a-log-to-an-action-run.api.mdx b/docs/api-reference/add-a-log-to-an-action-run.api.mdx index 5a1bf18e4..5c5b38ba6 100644 --- a/docs/api-reference/add-a-log-to-an-action-run.api.mdx +++ b/docs/api-reference/add-a-log-to-an-action-run.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJztV0tv2zgQ/ivEXLYFFCspuhcjCOBms0DRAg3yOCxSI6XFscWaIlU+7HgN/ffFkJIlO07by2J72ItNk5zhPL75ZrwFga6wsvbSaBjDXSkdsyZ4ZFwps3ZsYwLzhjnUgnGmzIJV6BxfIJvxYklH18b6jK1LWZRsLZViM2RCulrxDQomNfMlMl7QC8wG/ZtjNV/giP1lAiu4Zlw5w4JD5vvHvWGhFpxWJbZSHm0lNY96nOc+OPbq9v7y8ur2Nv9z8v7j/c3Va8a1YIrPULHk2EzqRdSRJEbnM5tfxI87wxRyq1llLDI+M8EPrHQZK0osloy2Sf5BmCJUqH00YPqq9L524zwXpnCjBfraWD+SJi8sco8nDtX8xKFdyQJP8KlGK1EX6HKLc4WFP0lPndTWLCw6l78eQQaeLxyMH2CS7LgJ2sE0A4vfAjr/zogNjLdQGO1Re1ryulayiCblXx2lcAuuKLHitPKbGmEMZvYVCw8Z1NbUaL1EF0/7eN7G4AxEnLdSLyB7Bg88lgYzP8jxiF1yTThQOPdsprheMjmPWDJabdiaa38cVSlBkAHqUFEo2gxDBm2OYdpkkB7+SIn+sdWTFhHedKDAAST+BeubDNqNnwvpsKo6vcPq6tQ2GXAhJElydT1I5pwrhwkn0qKguHUGTBsS60+8DdhkUHPLK/RoCW9HMNNa22Qgycqa+xIy0LyiQxv0oxTwTO00A4dFsNJvotYZcosWxg/TJqLY1Ua7BL43p2f0dZAoIVAwF4oCnZsHpTZUFD8N9314m+XAHa43PabIVgKRDfqjWfy4UKQ4Ghgb9PvjJy8mv8kg8YN4t/ne6cQfA87c2Ip7GAMR44mXFcJ+bh8gZSUa1psxfHT4xPRQ2iyJbb4Lsf2EffoATcTX29O3z9P5SWNXXHND3YS4GK011jFTFMFaFOPP+rM+93ym8IIW9uKzZuzclxdXdPE89+Vu549ee7t/nkeBXkxcfNHGP85N0OLLee7Fbv9ur8TZWvoyWlZbs5IEOylQezmXaNmaO6aNZ1FNq6V7Ku9spXS9ffPmV3Fb6hVXUjy2veK584J73nsrDCYfK+6LFInUeVM5HTg9fIiKH59KHpzHgxhP+vhyZZGLDZtLLV2JguETFqH14cV4/n56+uvE06PVXD3Glw781Kw7Tobs7HjZuUgLvjSC2NS4yDJEqmPIV2d5QqbLafLIt4lfm1yZhQPiVLvqiDpYBWPohg9ey8HsAU127EJwe3cGJH1LuU4c11F1z5i1/ICbnvMnwZfGyr8j+ULbFkrkAm10juj4pp9Trp54VSt8Yc4YdPW9Tt5z3Y5C9zrR3ESF0pNmoNbIJtfvIQOKT0LL2eiU7lKIKx4bROeA6Jq1N4zGzh1YD3vyYML6fyD+jwfiBEaPTz6vFZeRJSLEt235PMDqDDJoCyh1P/oa74aUWEXTDEqquvEDbLcz7vDeqqah7W8BLY0r0wxW3Eoq2FhpQjpai+Otb4iRVzdtD33NXjJ5bwxZcRXoF2SwxE0/TzU0lLQlRRakw8v0zskdqeiFn41CVPxJYlIUWPvv3p0O2Oj60+0dZDBr/11URsQZj68pmHydDDV1iu94m/a2oLhehFSiSWccTwPlZEgiy0gi7YK8OhqKQ3ZJjtAnuXVUZLtNFNU0u/vp6EWJNrTdbcoMTcf/ABUBNqo= sidebar_class_name: "post api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/approve-an-action-run.api.mdx b/docs/api-reference/approve-an-action-run.api.mdx index 06622d2d8..76ffc9630 100644 --- a/docs/api-reference/approve-an-action-run.api.mdx +++ b/docs/api-reference/approve-an-action-run.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "patch api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/cancel-a-migration.api.mdx b/docs/api-reference/cancel-a-migration.api.mdx index 1de376111..1e211a3d2 100644 --- a/docs/api-reference/cancel-a-migration.api.mdx +++ b/docs/api-reference/cancel-a-migration.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJy1VE2P0zAQ/SvWnEAyzS7HCCHBwgEhRLW7nKoKTZNp4t3E9tpOuyXyf0eTOP3awgVxaR372X7vzRv3UJIvnLJBGQ053NfKC2e6QAKbxmy92JlOBCMK1AU1AoXrtFa6Eq2qHPIuoTSDnJgbF4RxFWr1a1iZgYSAlYd8Ad8muIelBEdPHfnw0ZQ7yHsojA6kAw/R2kYVAzJ78MypB1/U1CKPws4S5GBWD1QEkGCdseSCIs+rjjDtSDgfnNIVyBciSYxYsTYuSWtYVKjpIGz2buWy9xCjBCxLxVPYzI9uXGPjKUYGWHTYUiDHYi8wTkyiBMUMLIYaJGhseXF/409VXiSrStJBrRU5YdanJIf6bFGHQ5ES79Fl5aiEPLiO4lKCp6JzKuwGkitCRw7yxTIOJfHWaD86+fbqiv9OmXyiNXZNELcJOTjTUqhNyZKMHyrCynLINtfZnqPP+mOJMRt5AvNxm8mzzjWQQx2C9XmWoVWzioI1LsyUgSgvATp/gjkSeMcFGLVMMve1QKu+0u5g/4cu1MalzEKqUE1YkhskcgxvD4H9/Iytbeg4cCflXZvhLhUYA0NTfJh/AQmsdHTyenbFWLasxSGwicrN1GV7v87zcNQs/6FZR4MCPYfMNqg0sxxs71NhF7C5BnlIrAcJ+Vl+U3WXEmrORL6Avl+hpx+uiZGnnzpyHMGlhA06hSt2atFDqTyPy9RZf1H+6jZF+7X4h/64KHcKieaEbLDp+AskPNLuvFXjMsopKMx/hNyMLN/c80GHI148bBzXfffMv9/dg4RVehBbU/Ieh1tuY9yOFIwdLefk8VwPDeqqw4qx45nDY9VxpY7j/jjEPQ2Y6UWR530wyuFf7r6LW/p+bKYY9/hx6Y87kl0Tmj1fxhh/A/AlQqc= sidebar_class_name: "post api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/change-a-scorecard.api.mdx b/docs/api-reference/change-a-scorecard.api.mdx index ff161bfde..94bde2d17 100644 --- a/docs/api-reference/change-a-scorecard.api.mdx +++ b/docs/api-reference/change-a-scorecard.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "put api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/change-a-team.api.mdx b/docs/api-reference/change-a-team.api.mdx index 5a76869c5..b8b62e980 100644 --- a/docs/api-reference/change-a-team.api.mdx +++ b/docs/api-reference/change-a-team.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzlVsFu4zYQ/RViLt0FGDvpUSgKZBd7WBRog21yMnwYi2OLG0nUkkM7rqF/L4aUY8VR3Oy5PsgyOTOceW/e0AcwFEpvO7auhQLuKxuUd5FJYV27XVB7FxU7VVbYbkihYsLml6AMMdo6zFTyKLFVK1IxkBHj2BlkUlzR0bzFhrTs+6AVtkaNjp39tvLz39Pj3qma0LeqcZ4UrlzkFCFoVVZUPqq0UJFaGFfGhlpGibD8UDF3oZjPjSvDbEPcOc8z6+YhuCu/wnIujyu3Jb+1tJt/nIEGxk2AYgH3cgAsNXj6ESnwJ2f2UBygdC1Ty/KKXVfbMp01/x4EqQOEsqIG5Y33HUEBbvWdSgYNnXcdebYUZFdKH1kF9rbdgH4FPKmWdgko5dbP2GVwoNeQwBsFQu9x/yrOXy0p5zN+dNWgrRUa4ykEChI3RRGO0CSqeDg3nZXJ3Nm6VgKVtyaTSE82sG03yVvVNvCQlgbL1ITX5fX9WWLvrX+0OgVDn1mynoxQl7Bd9i+X2UfqNXTosSFOoC0m6DpmqsFKAh1yBXpgK39N5njGT9LHDls+ieQZm7OUlhoCldFb3qeMVoSevJSR9VJwbsQ+tWLoXBtyB/16fS1fL5N5SD5GhViWFMI61vVeuvrdXfu+cJd72z2OG7KVdqQ2NlAspOJlr0Fq+m+NWDNJzLR0eg2lJ8n2lqcaa+18gwwFSEVXbBtK8skF/oxL593WGqFoIoWL3X1BrueCeQMREulOBl5bH/jPt5Cp8cJmZ0uOfnovMHKcVHL6vNRdYlUL/UsNaIwVGLC+G5WwxjrQ4NoQV86IyGKqVKRWwHx7M08tPz8I0T2IPvz2KNjoayjgONixs6O5Dr2eMojhhc1IcH9L22dkj7I7MdPZP2h/0v5t5Mp5+08SDgzjoSKUTpBqRErfTlfFlydsuppOo/7UVkMPLI4ry/OJMp5Ba5dysiyx4M55Vrd3X0GDIJLNb2bXiUYXuMF2dOLn8e18PrdGN9n/637P9DI98byr0bZJlj6pKrfgArY3kGdUAA1Fvk40VC6w7B4OKwz04Ou+l+UfkbyM7qWGLXqLK2FqcQBjg7yboekvwP/h2yCij+pnL5PJal5M3i3WUX6BhkfaHy+xXqbw0L2SbN76nFO6upcAJ9dXN4boLHvcliV1fNF2OVL63cM9aFgNf6UaZ8TF406uRdzlLF1CKIkyrR2gxnYTcSO2OaToDaNwNZbrY5Lr8CJFTeJwruNchzylqkmXwyEPg75/ts9bb3oMyB6thRb5P/IvrkrnxA== sidebar_class_name: "put api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/change-an-entity.api.mdx b/docs/api-reference/change-an-entity.api.mdx index 0f0fa2c9e..5dcacaac3 100644 --- a/docs/api-reference/change-an-entity.api.mdx +++ b/docs/api-reference/change-an-entity.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "put api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/change-scorecards.api.mdx b/docs/api-reference/change-scorecards.api.mdx index 9840f218f..e86307d82 100644 --- a/docs/api-reference/change-scorecards.api.mdx +++ b/docs/api-reference/change-scorecards.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "put api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/create-a-scorecard.api.mdx b/docs/api-reference/create-a-scorecard.api.mdx index ef2a3f281..ba33df36e 100644 --- a/docs/api-reference/create-a-scorecard.api.mdx +++ b/docs/api-reference/create-a-scorecard.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "post api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/create-a-team.api.mdx b/docs/api-reference/create-a-team.api.mdx index 79e644389..ec8ac0d43 100644 --- a/docs/api-reference/create-a-team.api.mdx +++ b/docs/api-reference/create-a-team.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzVVVGP2zYM/isC14ducOK7PbrFhluxh2LAelizJ58LKDYTq2dbLkXlmhn+7wOlpHFySXp7XB4cgSIp8fs+UgNU6EoyPRvbQQaL2jhF1jMq3TT2yamt9YqtKgm1GFWHT4pRt8p0skfq3hIrS2vdmX+0pJm/XVL6S/gsrGpQU6daS6j00noOwS5RZY3lowqGGlVe2dK32HHIULyumXuXpWllSzdfI/eWeG5s6pyd0VKXqXxmdoO0MfiU/jiHBFivHWQ5LOQAKBIg/OLR8W+22kI2QGk7xo5lqfu+MWU4K/3spPIBXFljq2XF2x4hA7v8jCVDAj3ZHokNOtntdIsTL8dkujUkz4BEJZ7KrkKBe9giOJJUMyOJ66f805sf0oeHXx8eXLFfFz9Nra9gTMA7JDc5WRPp7bODP3SoLEXAcdZq0yhdVYTOoZPLhCzCqK4q+Tt7OcPYuudFjuPJaS9BYWK5AIakFa4MYSUEBoSL8djM5HFMwGHpyfAWsnyAJWpCkpAoz4wj9WMg3/W2c5Gzn29u5O/4cu9CTKWcL0t0buWbZis6erFOXpbuuprs45TRTvjEzreQ5VJwMSYgNX1flaY6Q1dyQaxjsgOsuuNzJK4stZohg0ozzti0GPTXV/81pCe7MZVQdOYKV5V0Re+n4ryACIr2zyZeGXL85yVkGn1lszclezq/51izP9s14Xes8cBqIvQXCeiqMgKDbu4nJax043AX2iLXtoIMeus4To8aMkg3t2nUvHQGbQJg+QCeGshgP0R1byYzFMbknIN3Rz7FodU+iuAjpvuGO3DSmz9QSIlCgzvPtaXdQyBcSWfUqEUDUoc00V+Hsfz7V932DR7G6kFQO/bzvaU4nS0H4E23suFOhiUXhBfp7v49JCCIRPfb+U0g0DpudTc58d3+ZdtRciLLb9Pg//02RroYv3LaN9p0ocEo9EfUUg6bW4jTJjyetQgty2EYltrh39SMo5i/eCQZvkUCG01GLwXxXObUjmWR3yNuBdiI3GwhZ4t746NkTmaq6DFG3JUl9nzVt5j0wv2HjwtIYLl731tbSQzpJ0jCNwPpsMBkUG+wDdDobu31WnxjThGm9gLCVNePQde7hVR1NKT3NzwVfCxEvlLW2ZBhiF0zjt/849bFiB20e29hT57HfwE2j1o7 sidebar_class_name: "post api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/create-an-action-automation.api.mdx b/docs/api-reference/create-an-action-automation.api.mdx index a471b9d21..3d454fdd1 100644 --- a/docs/api-reference/create-an-action-automation.api.mdx +++ b/docs/api-reference/create-an-action-automation.api.mdx @@ -5,24 +5,19 @@ description: "This route allows you to create a new self-service action or autom sidebar_label: "Create an action/automation" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; @@ -50,9247 +46,26 @@ This route allows you to create a new self-service action or automation in your > - + + + +","pattern":"^[A-Za-z0-9@_.:\\\\/=-]+$"},"title":{"type":"string","description":"The title of the new action.
"},"icon":{"type":"string","description":"The icon of the new action.
"},"description":{"type":"string","description":"The description of the new action.
"},"trigger":{"oneOf":[{"type":"object","description":"The trigger definition of the new action.
","title":"Self-service (DAY-2/DELETE)","properties":{"operation":{"type":"string","description":"The [operation type](https://docs.getport.io/create-self-service-experiences/setup-ui-for-action/#basic-details) of the action.
","enum":["DAY-2","DELETE"]},"type":{"type":"string","enum":["self-service"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint that the action is associated with.
Note that this is optional, as actions do not have to be tied directly to a blueprint.
"},"userInputs":{"oneOf":[{"type":"object","title":"Default order","description":"Use this option when you don't want to define a custom order/steps for the user inputs.
","properties":{"properties":{"type":"object","propertyNames":{"pattern":"^[A-Za-z0-9@_=\\\\-]+$"},"additionalProperties":{"type":"object","properties":{"type":{"enum":["string","number","boolean","object","array"]},"format":{"enum":["date-time","url","email","ipv4","ipv6","yaml","entity","user","team","proto","markdown"]},"blueprint":{"type":"string","description":"When using the `entity` format, this is the identifier of the blueprint whose entities will be selectable via this input.
"},"dependsOn":{"type":"array","description":"The identifiers of the inputs that this input depends on. This input will be disabled until they have been given a value.
","items":{"type":"string"}},"visible":{"description":"The visibility of the input. Resolves to a boolean value (`true` = visible).
","oneOf":[{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A [jq query](https://stedolan.github.io/jq/manual/) that resolves to `true` or `false`, determining the visibility of the input.
"}},"required":["jqQuery"],"additionalProperties":false},{"type":"boolean","title":"boolean","description":"A boolean value determining the visibility of the input.
"}]},"icon":{"type":"string","description":"The icon of the input.
"},"dataset":{"type":"object","properties":{"combinator":{"type":"string","description":"The combinator to use when calculating the rules.
","enum":["and","or"]},"rules":{"type":"array","minItems":1,"items":{"anyOf":[{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"oneOf":[{"anyOf":[{"type":"number","title":"number"},{"type":"string","title":"string","format":"date-time"}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a number.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"anyOf":[{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}]},{"type":"object","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false}]},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"},"items":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"]}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!=","contains"]},"value":{"anyOf":[{"type":"null"},{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"object","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}}},"required":["combinator","rules"]},"sort":{"type":"object","description":"Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
This input allows you to sort the entities in the dropdown by a specific property.
","properties":{"property":{"type":"string","description":"The property by which to sort the entities.
"},"order":{"type":"string","enum":["ASC","DESC"]}},"required":["property","order"]}},"required":["type"]}},"required":{"description":"The action's user inputs that must be provided by the executed user.
","oneOf":[{"type":"object","title":"jqQuery","description":"A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"array","title":"array","description":"The identifiers of the required inputs.
","items":{"type":"string"}}]}},"required":["properties"],"additionalProperties":false},{"type":"object","title":"Custom order","description":"Use this option when you want to define a custom order for the user inputs.
","properties":{"properties":{"type":"object","propertyNames":{"pattern":"^[A-Za-z0-9@_=\\\\-]+$"},"additionalProperties":{"type":"object","properties":{"type":{"enum":["string","number","boolean","object","array"]},"format":{"enum":["date-time","url","email","ipv4","ipv6","yaml","entity","user","team","proto","markdown"]},"blueprint":{"type":"string","description":"When using the `entity` format, this is the identifier of the blueprint whose entities will be selectable via this input.
"},"dependsOn":{"type":"array","description":"The identifiers of the inputs that this input depends on. This input will be disabled until they have been given a value.
","items":{"type":"string"}},"visible":{"description":"The visibility of the input. Resolves to a boolean value (`true` = visible).
","oneOf":[{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"boolean","title":"boolean","description":"A boolean value determining the visibility of the input.
"}]},"icon":{"type":"string","description":"The icon of the input.
"},"dataset":{"type":"object","properties":{"combinator":{"type":"string","description":"The combinator to use when calculating the rules.
","enum":["and","or"]},"rules":{"type":"array","minItems":1,"items":{"anyOf":[{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"oneOf":[{"anyOf":[{"type":"number","title":"number"},{"type":"string","title":"date-time","format":"date-time"}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","title":"Relation Rule","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"anyOf":[{"anyOf":[{"type":"string","title":"string"},{"type":"array","title":"array","items":{"type":"string"}}]},{"type":"object","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean","description":"Determines whether the relation is required or not.
"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","title":"Schema Rule","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"},"items":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"]}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!=","contains"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}}},"required":["combinator","rules"]},"sort":{"type":"object","description":"Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
This input allows you to sort the entities in the dropdown by a specific property.
","properties":{"property":{"type":"string","description":"The property by which to sort the entities.
"},"order":{"type":"string","enum":["ASC","DESC"]}},"required":["property","order"]}},"required":["type"]}},"required":{"description":"The action's user inputs that must be provided by the executed user.
","oneOf":[{"type":"object","title":"jqQuery","description":"A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"array","title":"array","description":"The identifiers of the required inputs.
","items":{"type":"string"}}]},"order":{"type":"array","description":"The order of the user inputs - an array of the inputs' identifiers.
","items":{"type":"string"}}},"required":["properties","order"],"additionalProperties":false},{"type":"object","title":"Custom steps","description":"Use this option when you want to define custom steps for the user inputs.
","properties":{"properties":{"type":"object","propertyNames":{"pattern":"^[A-Za-z0-9@_=\\\\-]+$"},"additionalProperties":{"type":"object","properties":{"type":{"enum":["string","number","boolean","object","array"]},"format":{"enum":["date-time","url","email","ipv4","ipv6","yaml","entity","user","team","proto","markdown"]},"blueprint":{"type":"string","description":"When using the `entity` format, this is the identifier of the blueprint whose entities will be selectable via this input.
"},"dependsOn":{"type":"array","description":"The identifiers of the inputs that this input depends on. This input will be disabled until they have been given a value.
","items":{"type":"string"}},"visible":{"description":"The visibility of the input. Resolves to a boolean value (`true` = visible).
","oneOf":[{"type":"object","title":"jqQuery","properties":{"jqQuery":{"description":"A [jq query](https://stedolan.github.io/jq/manual/) that resolves to `true` or `false`, determining the visibility of the input.
","type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"boolean","title":"boolean","description":"A boolean value determining the visibility of the input.
"}]},"icon":{"type":"string","description":"The icon of the input.
"},"dataset":{"type":"object","properties":{"combinator":{"type":"string","description":"The combinator to use when calculating the rules.
","enum":["and","or"]},"rules":{"type":"array","minItems":1,"items":{"anyOf":[{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"oneOf":[{"anyOf":[{"type":"number","title":"number"},{"type":"string","title":"date-time","format":"date-time"}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a number.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","title":"Relation Rule","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"anyOf":[{"anyOf":[{"type":"string","title":"string"},{"type":"array","title":"array","items":{"type":"string"}}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean","description":"Determines whether the relation is required or not.
"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","title":"Schema Rule","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"},"items":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"]}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!=","contains"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}}},"required":["combinator","rules"]},"sort":{"type":"object","properties":{"property":{"type":"string"},"order":{"type":"string","enum":["ASC","DESC"]}},"required":["property","order"]}},"required":["type"]}},"required":{"description":"The action's user inputs that must be provided by the executed user.
","oneOf":[{"type":"object","title":"jqQuery","description":"A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"array","title":"array","description":"The identifiers of the required inputs.
","items":{"type":"string"}}]},"steps":{"type":"array","description":"The steps of the user inputs. Each step is an object containing its title and the order of its properties.
","items":{"type":"object","properties":{"title":{"type":"string","description":"The title of the step.
"},"order":{"type":"array","description":"The order of the properties in the step - an array of property identifiers.
","items":{"type":"string"}}},"required":["title"],"additionalProperties":false}}},"required":["properties","steps"],"additionalProperties":false}],"type":"object","description":"The [user inputs](https://docs.getport.io/create-self-service-experiences/setup-ui-for-action/user-inputs/) of the action.
","additionalProperties":false,"required":["properties"]},"condition":{"type":"object","description":"Filters used to include/exclude specific entities from the action.","additionalProperties":false,"properties":{"type":{"type":"string","enum":["SEARCH"]},"rules":{"type":"array","description":"The [rules](https://docs.getport.io/search-and-query/#rules) used to filter entities.
","items":{"anyOf":[{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"type":["number"]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Relation Rule","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"type":"string"},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","title":"Schema Rule","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!="]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}},"combinator":{"type":"string","enum":["and","or"]}},"required":["type","rules","combinator"]}},"dependencies":{"condition":["blueprintIdentifier"]},"required":["type","userInputs","operation"],"additionalProperties":false},{"type":"object","description":"The trigger definition of the new action.
","title":"Self-service (CREATE)","properties":{"operation":{"type":"string","description":"The [operation type](https://docs.getport.io/create-self-service-experiences/setup-ui-for-action/#basic-details) of the action.
","enum":["CREATE"]},"type":{"type":"string","enum":["self-service"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint that the action is associated with.
Note that this is optional, as actions do not have to be tied directly to a blueprint.
"},"userInputs":{"oneOf":[{"type":"object","title":"Default order","description":"Use this option when you don't want to define a custom order/steps for the user inputs.
","properties":{"properties":{"type":"object","propertyNames":{"pattern":"^[A-Za-z0-9@_=\\\\-]+$"},"additionalProperties":{"type":"object","properties":{"type":{"enum":["string","number","boolean","object","array"]},"format":{"enum":["date-time","url","email","ipv4","ipv6","yaml","entity","user","team","proto","markdown"]},"blueprint":{"type":"string","description":"When using the `entity` format, this is the identifier of the blueprint whose entities will be selectable via this input.
"},"dependsOn":{"type":"array","description":"The identifiers of the inputs that this input depends on. This input will be disabled until they have been given a value.
","items":{"type":"string"}},"visible":{"description":"The visibility of the input. Resolves to a boolean value (`true` = visible).
","oneOf":[{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A [jq query](https://stedolan.github.io/jq/manual/) that resolves to `true` or `false`, determining the visibility of the input.
"}},"required":["jqQuery"],"additionalProperties":false},{"type":"boolean","title":"boolean","description":"A boolean value determining the visibility of the input.
"}]},"icon":{"type":"string","description":"The icon of the input.
"},"dataset":{"type":"object","properties":{"combinator":{"type":"string","description":"The combinator to use when calculating the rules.
","enum":["and","or"]},"rules":{"type":"array","minItems":1,"items":{"anyOf":[{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"oneOf":[{"anyOf":[{"type":"number","title":"number"},{"type":"string","title":"string","format":"date-time"}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a number.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"anyOf":[{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}]},{"type":"object","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false}]},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"},"items":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"]}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!=","contains"]},"value":{"anyOf":[{"type":"null"},{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"object","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}}},"required":["combinator","rules"]},"sort":{"type":"object","description":"Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
This input allows you to sort the entities in the dropdown by a specific property.
","properties":{"property":{"type":"string","description":"The property by which to sort the entities.
"},"order":{"type":"string","enum":["ASC","DESC"]}},"required":["property","order"]}},"required":["type"]}},"required":{"description":"The action's user inputs that must be provided by the executed user.
","oneOf":[{"type":"object","title":"jqQuery","description":"A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"array","title":"array","description":"The identifiers of the required inputs.
","items":{"type":"string"}}]}},"required":["properties"],"additionalProperties":false},{"type":"object","title":"Custom order","description":"Use this option when you want to define a custom order for the user inputs.
","properties":{"properties":{"type":"object","propertyNames":{"pattern":"^[A-Za-z0-9@_=\\\\-]+$"},"additionalProperties":{"type":"object","properties":{"type":{"enum":["string","number","boolean","object","array"]},"format":{"enum":["date-time","url","email","ipv4","ipv6","yaml","entity","user","team","proto","markdown"]},"blueprint":{"type":"string","description":"When using the `entity` format, this is the identifier of the blueprint whose entities will be selectable via this input.
"},"dependsOn":{"type":"array","description":"The identifiers of the inputs that this input depends on. This input will be disabled until they have been given a value.
","items":{"type":"string"}},"visible":{"description":"The visibility of the input. Resolves to a boolean value (`true` = visible).
","oneOf":[{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"boolean","title":"boolean","description":"A boolean value determining the visibility of the input.
"}]},"icon":{"type":"string","description":"The icon of the input.
"},"dataset":{"type":"object","properties":{"combinator":{"type":"string","description":"The combinator to use when calculating the rules.
","enum":["and","or"]},"rules":{"type":"array","minItems":1,"items":{"anyOf":[{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"oneOf":[{"anyOf":[{"type":"number","title":"number"},{"type":"string","title":"date-time","format":"date-time"}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","title":"Relation Rule","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"anyOf":[{"anyOf":[{"type":"string","title":"string"},{"type":"array","title":"array","items":{"type":"string"}}]},{"type":"object","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean","description":"Determines whether the relation is required or not.
"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","title":"Schema Rule","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"},"items":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"]}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!=","contains"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}}},"required":["combinator","rules"]},"sort":{"type":"object","description":"Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
This input allows you to sort the entities in the dropdown by a specific property.
","properties":{"property":{"type":"string","description":"The property by which to sort the entities.
"},"order":{"type":"string","enum":["ASC","DESC"]}},"required":["property","order"]}},"required":["type"]}},"required":{"description":"The action's user inputs that must be provided by the executed user.
","oneOf":[{"type":"object","title":"jqQuery","description":"A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"array","title":"array","description":"The identifiers of the required inputs.
","items":{"type":"string"}}]},"order":{"type":"array","description":"The order of the user inputs - an array of the inputs' identifiers.
","items":{"type":"string"}}},"required":["properties","order"],"additionalProperties":false},{"type":"object","title":"Custom steps","description":"Use this option when you want to define custom steps for the user inputs.
","properties":{"properties":{"type":"object","propertyNames":{"pattern":"^[A-Za-z0-9@_=\\\\-]+$"},"additionalProperties":{"type":"object","properties":{"type":{"enum":["string","number","boolean","object","array"]},"format":{"enum":["date-time","url","email","ipv4","ipv6","yaml","entity","user","team","proto","markdown"]},"blueprint":{"type":"string","description":"When using the `entity` format, this is the identifier of the blueprint whose entities will be selectable via this input.
"},"dependsOn":{"type":"array","description":"The identifiers of the inputs that this input depends on. This input will be disabled until they have been given a value.
","items":{"type":"string"}},"visible":{"description":"The visibility of the input. Resolves to a boolean value (`true` = visible).
","oneOf":[{"type":"object","title":"jqQuery","properties":{"jqQuery":{"description":"A [jq query](https://stedolan.github.io/jq/manual/) that resolves to `true` or `false`, determining the visibility of the input.
","type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"boolean","title":"boolean","description":"A boolean value determining the visibility of the input.
"}]},"icon":{"type":"string","description":"The icon of the input.
"},"dataset":{"type":"object","properties":{"combinator":{"type":"string","description":"The combinator to use when calculating the rules.
","enum":["and","or"]},"rules":{"type":"array","minItems":1,"items":{"anyOf":[{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"oneOf":[{"anyOf":[{"type":"number","title":"number"},{"type":"string","title":"date-time","format":"date-time"}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a number.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","title":"Relation Rule","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"anyOf":[{"anyOf":[{"type":"string","title":"string"},{"type":"array","title":"array","items":{"type":"string"}}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean","description":"Determines whether the relation is required or not.
"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","title":"Schema Rule","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"},"items":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"]}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!=","contains"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}}},"required":["combinator","rules"]},"sort":{"type":"object","properties":{"property":{"type":"string"},"order":{"type":"string","enum":["ASC","DESC"]}},"required":["property","order"]}},"required":["type"]}},"required":{"description":"The action's user inputs that must be provided by the executed user.
","oneOf":[{"type":"object","title":"jqQuery","description":"A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"array","title":"array","description":"The identifiers of the required inputs.
","items":{"type":"string"}}]},"steps":{"type":"array","description":"The steps of the user inputs. Each step is an object containing its title and the order of its properties.
","items":{"type":"object","properties":{"title":{"type":"string","description":"The title of the step.
"},"order":{"type":"array","description":"The order of the properties in the step - an array of property identifiers.
","items":{"type":"string"}}},"required":["title"],"additionalProperties":false}}},"required":["properties","steps"],"additionalProperties":false}],"type":"object","description":"The [user inputs](https://docs.getport.io/create-self-service-experiences/setup-ui-for-action/user-inputs/) of the action.
","additionalProperties":false,"required":["properties"]}},"required":["type","userInputs","operation"],"additionalProperties":false},{"type":"object","description":"The trigger definition of the new action.
","title":"Automation","properties":{"type":{"type":"string","enum":["automation"]},"event":{"description":"The [event](https://docs.getport.io/actions-and-automations/define-automations/setup-trigger) that triggers the action.
","oneOf":[{"type":"object","title":"Entity created","properties":{"type":{"type":"string","enum":["ENTITY_CREATED"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint whose entities will trigger the automation.
"}},"required":["type","blueprintIdentifier"],"additionalProperties":false},{"type":"object","title":"Entity updated","properties":{"type":{"type":"string","enum":["ENTITY_UPDATED"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint whose entities will trigger the automation.
"}},"required":["type","blueprintIdentifier"],"additionalProperties":false},{"type":"object","title":"Entity deleted","properties":{"type":{"type":"string","enum":["ENTITY_DELETED"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint whose entities will trigger the automation.
"}},"required":["type","blueprintIdentifier"],"additionalProperties":false},{"type":"object","title":"Timer property expired","properties":{"type":{"type":"string","enum":["TIMER_PROPERTY_EXPIRED"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint whose entities will trigger the automation.
"},"propertyIdentifier":{"type":"string","description":"The identifier of the timer property in the specified blueprint.
"}},"required":["type","blueprintIdentifier","propertyIdentifier"],"additionalProperties":false},{"type":"object","title":"Any entity change","properties":{"type":{"type":"string","enum":["ANY_ENTITY_CHANGE"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint whose entities will trigger the automation.
"}},"required":["type","blueprintIdentifier"],"additionalProperties":false}]},"condition":{"description":"Filters used to include/exclude specific entities from the automation.","oneOf":[{"type":"object","title":"JQ","properties":{"type":{"type":"string","enum":["JQ"]},"expressions":{"type":"array","description":"An array of [jq expressions](https://docs.getport.io/search-and-query/#jq-expressions) used to filter entities.
Read more [here](https://docs.getport.io/actions-and-automations/define-automations/setup-trigger#conditions).
","items":{"type":"string"}},"combinator":{"type":"string","enum":["and","or"]}},"required":["type","expressions"],"additionalProperties":false}]}},"required":["type","event"],"additionalProperties":false}]},"invocationMethod":{"description":"Details the action's backend type and details.
","oneOf":[{"type":"object","title":"Kafka","properties":{"type":{"type":"string","enum":["KAFKA"]},"payload":{"description":"An object containing the [action payload](https://docs.getport.io/create-self-service-experiences/setup-backend/#define-the-actions-payload).
","type":"object"}},"required":["type"],"additionalProperties":false},{"type":"object","title":"Webhook","properties":{"type":{"type":"string","enum":["WEBHOOK"]},"url":{"type":"string","description":"The URL of the webhook.
"},"agent":{"type":"boolean","description":"If `true`, Port's [execution agent](https://docs.getport.io/create-self-service-experiences/setup-backend/webhook/port-execution-agent/) will be used to handle invocations of this action.
"},"synchronized":{"type":"boolean","description":"If `true`, the action will be executed [synchronously](https://docs.getport.io/create-self-service-experiences/setup-backend/webhook/#sync-vs-async-execution).
"},"method":{"type":"string","description":"The HTTP method of the webhook (`POST`, `PUT`, `PATCH`, or `DELETE`).
"},"headers":{"type":"object","description":"A JSON object containing the headers to be sent to the webhook in each execution, in `\"key\"`:`\"value\"` pairs.
"},"body":{"type":"object","description":"The body sent to the webhook in each execution. This is where the [action payload](https://docs.getport.io/create-self-service-experiences/setup-backend/#define-the-actions-payload) is specified.
"}},"required":["type","url"],"additionalProperties":false},{"type":"object","title":"GitHub","properties":{"type":{"type":"string","enum":["GITHUB"]},"org":{"type":"string","description":"The Github organization in which the workflow is located.
"},"repo":{"type":"string","description":"The Github repository in which the workflow is located.
"},"workflow":{"type":"string","description":"The name of the workflow (YAML file) to trigger. The file should be placed under `.github/workflows/`.
"},"workflowInputs":{"type":"object","description":"The [action payload](https://docs.getport.io/create-self-service-experiences/setup-backend/#define-the-actions-payload) to be sent to Github upon execution.
"},"reportWorkflowStatus":{"type":"boolean","description":"If `true`, the action run will update its status automatically based on the workflow's result (pass/fail).
"}},"required":["type","org","repo","workflow"],"additionalProperties":false},{"type":"object","title":"GitLab","properties":{"type":{"type":"string","enum":["GITLAB"]},"projectName":{"type":"string","description":"The GitLab project in which the pipeline is located.
"},"groupName":{"type":"string","description":"The GitLab group in which the project is located.
"},"defaultRef":{"type":"string","description":"The default ref (branch/tag name) we want the action to use. Default ref can be overridden dynamically by adding \"ref\" as a user input. If not set, the agent triggers the `main` branch."},"pipelineVariables":{"type":"object","description":"The [action payload](https://docs.getport.io/create-self-service-experiences/setup-backend/#define-the-actions-payload) to be sent to GitLab upon execution.
"}},"required":["type","projectName","groupName"],"additionalProperties":false},{"type":"object","title":"Azure DevOps","properties":{"type":{"type":"string","enum":["AZURE_DEVOPS"]},"webhook":{"type":"string","description":"The name of the webhook resource in the Azure YAML pipeline file.
"},"org":{"type":"string","description":"The Azure DevOps organization in which the pipeline is located.
"},"payload":{"type":"object","description":"The [action payload](https://docs.getport.io/create-self-service-experiences/setup-backend/#define-the-actions-payload) to be sent to Azure DevOps upon execution.
"}},"required":["type","webhook","org"],"additionalProperties":false},{"type":"object","title":"Upsert Entity","properties":{"type":{"type":"string","enum":["UPSERT_ENTITY"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint whose entity will be upserted.
"},"mapping":{"type":"object","description":"An object containing the entity's properties and their new values.
","properties":{"identifier":{"type":"string","description":"The identifier of the upserted entity.
"},"title":{"type":"string","description":"The title of the upserted entity.
"},"team":{"description":"The team/s the entity belongs to.
","oneOf":[{"type":"string","title":"string"},{"type":"array","title":"array","items":{"type":"string"}}]},"icon":{"type":"string","description":"The icon of the upserted entity.
"},"properties":{"type":"object","description":"The properties of the upserted entity, in `\"key\"`:`\"value\"` pairs.
"},"relations":{"type":"object","description":"The relations of the upserted entity, in `\"key\"`:`\"value\"` pairs, where the key is the relation's identifier and the value is the related entity's identifier.
","additionalProperties":{"type":"object","oneOf":[{"type":"string","title":"string"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"null"}]}}},"required":["identifier"]}},"required":["type","blueprintIdentifier","mapping"],"additionalProperties":false}]},"requiredApproval":{"description":"Determines whether the action requires approval before execution.
Choose `ALL` to require all specified users to approve the action, or `ANY` to require only one.
","oneOf":[{"type":"object","title":"User/s","properties":{"type":{"type":"string","enum":["ANY","ALL"]}},"required":["type"],"additionalProperties":false},{"type":"boolean","title":"boolean"}]},"approvalNotification":{"type":"object","description":"The notification configuration for the approval process. Relevant only if `requiredApproval` is set to `true`.
","properties":{"type":{"type":"string","enum":["webhook","email"],"default":"email"}},"oneOf":[{"type":"object","title":"Webhook","properties":{"type":{"type":"string","enum":["webhook"]},"format":{"type":"string","enum":["json","slack"]},"url":{"type":"string","description":"The URL of the webhook.
","format":"uri"}},"required":["type","url"],"additionalProperties":false},{"type":"object","title":"Email","properties":{"type":{"type":"string","enum":["email"]}},"required":["type"],"additionalProperties":false}],"required":["type"]},"publish":{"type":"boolean","description":"Only relevant for **automations**. If `false`, the automation will be inactive (will not be triggered).
"}},"additionalProperties":false,"required":["identifier","trigger","invocationMethod"]}}},"required":true}} > - -
- -

- Body -

- required - -
- -
    - ","pattern":"^[A-Za-z0-9@_.:\\\\/=-]+$"}} - > - - "}} - > - - "}} - > - - "}} - > - - -
    - - - - trigger - - object - - - - required - - -
    -
    - - oneOf - - -
    - - - The trigger definition of the new action.
    - - -
    ","enum":["DAY-2","DELETE"]}} - > - - - - Note that this is optional, as actions do not have to be tied directly to a blueprint.
    "}} - > - -
    -
    - - - - userInputs - - object - - - - required - - -
    -
    - - - The [user inputs](https://docs.getport.io/create-self-service-experiences/setup-ui-for-action/user-inputs/) of the action.
    - - -
    - - oneOf - - -
    - - - Use this option when you don't want to define a custom order/steps for the user inputs.
    - - -
    -
    - - - - properties - - object - - - - required - - -
    - -
    - - - - property name* - - object - - -
    - - - - - "}} - > - - ","items":{"type":"string"}}} - > - - -
    - - - - visible - - object - - -
    -
    - - - The visibility of the input. Resolves to a boolean value (`true` = visible).
    - - -
    - - oneOf - - - "}} - > - - - -
    - - - A boolean value determining the visibility of the input.
    - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    "}} - > - - -
    - - - - dataset - - object - - -
    - ","enum":["and","or"]}} - > - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - **Possible values:** `>= 1` - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - "}} - > - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - - - - - - -
    -
    -
    -
    - - - - -
    - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    - - - - items - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    - - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - sort - - object - - -
    -
    - - - Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
    This input allows you to sort the entities in the dropdown by a specific property.
    - - -
    "}} - > - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - required - - object - - -
    -
    - - - The action's user inputs that must be provided by the executed user.
    - - -
    - - oneOf - - -
    - - - A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
    - - -
    - - -
    -
    - - - The identifiers of the required inputs.
    - - -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    - - - Use this option when you want to define a custom order for the user inputs.
    - - -
    -
    - - - - properties - - object - - - - required - - -
    - -
    - - - - property name* - - object - - -
    - - - - - "}} - > - - ","items":{"type":"string"}}} - > - - -
    - - - - visible - - object - - -
    -
    - - - The visibility of the input. Resolves to a boolean value (`true` = visible).
    - - -
    - - oneOf - - - - - - -
    - - - A boolean value determining the visibility of the input.
    - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    "}} - > - - -
    - - - - dataset - - object - - -
    - ","enum":["and","or"]}} - > - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - **Possible values:** `>= 1` - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - - "}} - > - - - - -
    -
    -
    -
    - - "}} - > - - -
    - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    - - - - items - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - sort - - object - - -
    -
    - - - Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
    This input allows you to sort the entities in the dropdown by a specific property.
    - - -
    "}} - > - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - required - - object - - -
    -
    - - - The action's user inputs that must be provided by the executed user.
    - - -
    - - oneOf - - -
    - - - A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
    - - -
    - - -
    -
    - - - The identifiers of the required inputs.
    - - -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    ","items":{"type":"string"}}} - > - - -
    -
    - - - Use this option when you want to define custom steps for the user inputs.
    - - -
    -
    - - - - properties - - object - - - - required - - -
    - -
    - - - - property name* - - object - - -
    - - - - - "}} - > - - ","items":{"type":"string"}}} - > - - -
    - - - - visible - - object - - -
    -
    - - - The visibility of the input. Resolves to a boolean value (`true` = visible).
    - - -
    - - oneOf - - - ","type":"string"}} - > - - - -
    - - - A boolean value determining the visibility of the input.
    - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    "}} - > - - -
    - - - - dataset - - object - - -
    - ","enum":["and","or"]}} - > - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - **Possible values:** `>= 1` - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - "}} - > - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - - "}} - > - - - - -
    -
    -
    -
    - - "}} - > - - -
    - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    - - - - items - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - sort - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - required - - object - - -
    -
    - - - The action's user inputs that must be provided by the executed user.
    - - -
    - - oneOf - - -
    - - - A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
    - - -
    - - -
    -
    - - - The identifiers of the required inputs.
    - - -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - steps - - object[] - - - - required - - -
    -
    - - - The steps of the user inputs. Each step is an object containing its title and the order of its properties.
    - - -
  • -
    - Array [ -
    -
  • "}} - > - - ","items":{"type":"string"}}} - > - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - condition - - object - - -
    -
    - - - Filters used to include/exclude specific entities from the action. - - -
    - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - The [rules](https://docs.getport.io/search-and-query/#rules) used to filter entities.
    - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
    -
    -
    -
    -
    - - - The trigger definition of the new action.
    - - -
    ","enum":["CREATE"]}} - > - - - - Note that this is optional, as actions do not have to be tied directly to a blueprint.
    "}} - > - -
    -
    - - - - userInputs - - object - - - - required - - -
    -
    - - - The [user inputs](https://docs.getport.io/create-self-service-experiences/setup-ui-for-action/user-inputs/) of the action.
    - - -
    - - oneOf - - -
    - - - Use this option when you don't want to define a custom order/steps for the user inputs.
    - - -
    -
    - - - - properties - - object - - - - required - - -
    - -
    - - - - property name* - - object - - -
    - - - - - "}} - > - - ","items":{"type":"string"}}} - > - - -
    - - - - visible - - object - - -
    -
    - - - The visibility of the input. Resolves to a boolean value (`true` = visible).
    - - -
    - - oneOf - - - "}} - > - - - -
    - - - A boolean value determining the visibility of the input.
    - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    "}} - > - - -
    - - - - dataset - - object - - -
    - ","enum":["and","or"]}} - > - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - **Possible values:** `>= 1` - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - "}} - > - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - - - - - - -
    -
    -
    -
    - - - - -
    - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    - - - - items - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    - - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - sort - - object - - -
    -
    - - - Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
    This input allows you to sort the entities in the dropdown by a specific property.
    - - -
    "}} - > - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - required - - object - - -
    -
    - - - The action's user inputs that must be provided by the executed user.
    - - -
    - - oneOf - - -
    - - - A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
    - - -
    - - -
    -
    - - - The identifiers of the required inputs.
    - - -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    - - - Use this option when you want to define a custom order for the user inputs.
    - - -
    -
    - - - - properties - - object - - - - required - - -
    - -
    - - - - property name* - - object - - -
    - - - - - "}} - > - - ","items":{"type":"string"}}} - > - - -
    - - - - visible - - object - - -
    -
    - - - The visibility of the input. Resolves to a boolean value (`true` = visible).
    - - -
    - - oneOf - - - - - - -
    - - - A boolean value determining the visibility of the input.
    - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    "}} - > - - -
    - - - - dataset - - object - - -
    - ","enum":["and","or"]}} - > - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - **Possible values:** `>= 1` - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - - "}} - > - - - - -
    -
    -
    -
    - - "}} - > - - -
    - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    - - - - items - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - sort - - object - - -
    -
    - - - Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
    This input allows you to sort the entities in the dropdown by a specific property.
    - - -
    "}} - > - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - required - - object - - -
    -
    - - - The action's user inputs that must be provided by the executed user.
    - - -
    - - oneOf - - -
    - - - A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
    - - -
    - - -
    -
    - - - The identifiers of the required inputs.
    - - -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    ","items":{"type":"string"}}} - > - - -
    -
    - - - Use this option when you want to define custom steps for the user inputs.
    - - -
    -
    - - - - properties - - object - - - - required - - -
    - -
    - - - - property name* - - object - - -
    - - - - - "}} - > - - ","items":{"type":"string"}}} - > - - -
    - - - - visible - - object - - -
    -
    - - - The visibility of the input. Resolves to a boolean value (`true` = visible).
    - - -
    - - oneOf - - - ","type":"string"}} - > - - - -
    - - - A boolean value determining the visibility of the input.
    - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    "}} - > - - -
    - - - - dataset - - object - - -
    - ","enum":["and","or"]}} - > - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - **Possible values:** `>= 1` - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - "}} - > - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - - "}} - > - - - - -
    -
    -
    -
    - - "}} - > - - -
    - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    - - - - items - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - sort - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - required - - object - - -
    -
    - - - The action's user inputs that must be provided by the executed user.
    - - -
    - - oneOf - - -
    - - - A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
    - - -
    - - -
    -
    - - - The identifiers of the required inputs.
    - - -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - steps - - object[] - - - - required - - -
    -
    - - - The steps of the user inputs. Each step is an object containing its title and the order of its properties.
    - - -
  • -
    - Array [ -
    -
  • "}} - > - - ","items":{"type":"string"}}} - > - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - The trigger definition of the new action.
    - - -
    - - -
    - - - - event - - object - - - - required - - -
    -
    - - - The [event](https://docs.getport.io/actions-and-automations/define-automations/setup-trigger) that triggers the action.
    - - -
    - - oneOf - - - - - "}} - > - - - - - - "}} - > - - - - - - "}} - > - - - - - - "}} - > - - "}} - > - - - - - - "}} - > - - - - -
    -
    -
    -
    -
    - - - - condition - - object - - -
    -
    - - - Filters used to include/exclude specific entities from the automation. - - -
    - - oneOf - - - - - Read more [here](https://docs.getport.io/actions-and-automations/define-automations/setup-trigger#conditions).
    ","items":{"type":"string"}}} - > - -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - invocationMethod - - object - - - - required - - -
    -
    - - - Details the action's backend type and details.
    - - -
    - - oneOf - - - - - ","type":"object"}} - > - - - - - - "}} - > - - "}} - > - - "}} - > - - "}} - > - - "}} - > - - "}} - > - - - - - - "}} - > - - "}} - > - - "}} - > - - "}} - > - - "}} - > - - - - - - "}} - > - - "}} - > - - - - "}} - > - - - - - - "}} - > - - "}} - > - - "}} - > - - - - - - "}} - > - - -
    - - - - mapping - - object - - - - required - - -
    -
    - - - An object containing the entity's properties and their new values.
    - - -
    "}} - > - - "}} - > - - -
    - - - - team - - object - - -
    -
    - - - The team/s the entity belongs to.
    - - -
    - - oneOf - - -
    - - - string - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    "}} - > - - "}} - > - - -
    - - - - relations - - object - - -
    -
    - - - The relations of the upserted entity, in `"key"`:`"value"` pairs, where the key is the relation's identifier and the value is the related entity's identifier.
    - - -
    -
    - - - - property name* - - object - - -
    -
    - - oneOf - - -
    - - - string - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - requiredApproval - - object - - -
    -
    - - - Determines whether the action requires approval before execution.
    Choose `ALL` to require all specified users to approve the action, or `ANY` to require only one.
    - - -
    - - oneOf - - - - - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    -
    - - - - approvalNotification - - object - - -
    -
    - - - The notification configuration for the approval process. Relevant only if `requiredApproval` is set to `true`.
    - - -
    - - oneOf - - - - - - - ","format":"uri"}} - > - - - - - - - - -
    - - -
    -
    -
    "}} - > - - -
-
-
-
-
- - -
- - - Success - - -
- -
-
-
- - - One of the following errors occurred: - - - - - - - - - - -
ErrorDescription
identifier_takenAn action/automation with the same identifier already exists
- - - -
- -
-
-
- - - One of the following errors occurred: - - - - - - - - - - - - - - -
ErrorDescription
invalid_requestThe data provided does not match the route schema
user_inputs_schema_invalidThe provided user inputs are invalid
- - - -
- -
-
-
- - - One of the following errors occurred: - - - - - - - - - - -
ErrorDescription
internal_errorAn internal error occurred
- - - -
- -
-
-
-
-
+ + + +\n\n Error\n Description\n\n\n identifier_taken\n An action/automation with the same identifier already exists\n\n\n"},"422":{"description":"One of the following errors occurred:\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n
ErrorDescription
invalid_requestThe data provided does not match the route schema
user_inputs_schema_invalidThe provided user inputs are invalid
\n"},"500":{"description":"One of the following errors occurred:\n\n\n\n \n \n\n\n \n \n\n
ErrorDescription
internal_errorAn internal error occurred
\n"}}} +> + +
+ + \ No newline at end of file diff --git a/docs/api-reference/create-an-entity.api.mdx b/docs/api-reference/create-an-entity.api.mdx index c5b58e1a0..7e6a5e9be 100644 --- a/docs/api-reference/create-an-entity.api.mdx +++ b/docs/api-reference/create-an-entity.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "post api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/create-an-organization-secret.api.mdx b/docs/api-reference/create-an-organization-secret.api.mdx index 65d769c6a..cf04db5a5 100644 --- a/docs/api-reference/create-an-organization-secret.api.mdx +++ b/docs/api-reference/create-an-organization-secret.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzdVE2P0zAQ/SvWiAMgt2lX4kCEkMrHAYHYaikcqAqaJtPGu4mdtZ3udqP8dzRO2qbdXdgzF9d1nsfvzbyZGlJyiVWlV0ZDDLNMOWFN5UlgnpsbJ7amEt6IxBLyoRbGrlGrO+QbwlFiyQ/fLG30NiwzI3JCq0VhLAlcmsp3ICcK1LimgrQXSoupsV6KJKPkSjDKZyTmqUkqBoToi+eZ96WLoyg1iRuuyZfG+qEykXNmYJeYRHww6OK/GIIEj2sH8RzOeyxhIcHSdUXOvzPpFuIaEqM9ac9bLMtcJQEYXTrOQg0uyahA3vltSRCDWV5S4kFCaU1J1ityARde/ooF9bDOW6XXIO+lloTGgoRZBa2abo7SBxIKvP1Ceu0ziF+NJBRK7/6OJZToPVmO9Gs+GfzEwd1o8Hrwe/HyGTSyY/ID8+qJVDYMfZRLc3LlXxEnWpiwx1z0vjxN69lo1DQSME1VG2LaS/IKc0dt/ZSllGvby/qx8EXDcQ5Qbytqc1NZ5bcQz2tYElqyHKa1dNy5BxZNsIkrjXZtdc9GI/45VvqBVljlXlx0SOAnC/KZSSGG0rjgEmRdEG3GUb9dot1bzMluyLpAqbI5xLDzOpaqZ3Vo5EOAyh1hFgeR39i6Lf+d1H3xsFSfaQsSdHAsTCqfGbvrEgmKBWaEKdkgi9vh4tA4H2+xKHM6Nf7BE0cmfMwq3XHDz61MYKc8RwWeCGIy/QQSODctfDwcMZYTW2BwYkf+/d8m0umrvY7/D2ZcW01Ptz4qc1SaExQ8UnfOm8NmDBL6MvblcTwOM/ZpPIe6XqKj7zZvGj6+rshymywkbNAqXHJd5otG7lzBdr2iLae/zedgxmQY3hb93jRlb+7bY3r+bQYSlt0ULkzKdyzegAxrDMw61Cw4OJzVkKNeV7hmbBszjIuKlfa9fRW83W2Y6e6T3vYYnpq+lcMrt9qDV+q67Zym2ePbT4/e6NK1Q3OJeDj9ATqxlIo= sidebar_class_name: "post api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/create-credentials.api.mdx b/docs/api-reference/create-credentials.api.mdx index 033673a76..5e4b2568c 100644 --- a/docs/api-reference/create-credentials.api.mdx +++ b/docs/api-reference/create-credentials.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzNVEtv2zAM/isCz2rS7mgMA7LHodhhxdadggBlbCZWK0uqRHfLDP/3gVLaOF32PO1i60FS5Pd95AANpTqawMY7qOC6NUlF3zMptNZ/SWrne8Ve1ZFQDlUiVn4j+4YcG7RJGSdWUV35yMrHLTrzDSWgVrV3jMYZt1WobmpryLG6fHuj0DVP+0R1JL6ZvVzH+SvQwLhNUC1hEUKClYZI9z0lfu2bHVQDSExyLEsMwZo6vzW/TVLBAKluqUNZ8S4QVODXt1QzaAjRB4psKMmtw44mVomjcVvQPwBCSiylZm7pqO5EvM95HDVg0xhxQns1eWeDNlEpwURqpKz88GoUn8Mxx55GDYnqPhreQbUcYE0YKYpLHxpkqjADMmZIUvAulUpenJ/L7zjxN5mwRqW+rimlTW/tbgb6z9E7RsvfTbBCtwMN5PoOqqVkvpL6Q/hX0EcJhmsrQDzdrb23hE4uTXPSp2iyWfApGjc+dshQgSB3xqYjcSlA/pVLUeeJBJ4xuBSMVr/RwZ9wNJbIHXHrG6gg+JSBRG6hgvnDxTzrQDKLDxRT1kofLVTQModUzecYzGxLHHzkmfEw6lMGfTqyWR3U90lEUAh71OCB+2Dek9BfqIRFz62P+4YHDUYKawkbirktRFgfDw387it2wdJBCxM+jdv4/JJhsYA8TxZXl6BB6iyYXczOxVZA6dBN4hQwpw36vJkno+M/GXQFUqavPA8WTRZ7JmrY072EhwvIvZUnYStSqJYwDGtM9DnacZTj+56ijIyVhgeMRjpJdqN+JEIUckc7QakgcHYtT4u57Qurz0aBSKZ4LOqaAv/SdjVR69WHT9egYb0f1p1vxCfiF9D5WwFo8JmRLLB8NoBFt+1xK7YlZh6pvWAwld5dlt5+IVUdTaTHDJ9rshQiXynrpMswFGGP45N9ufqpxx7aR2shT4b6d7+4hlg= sidebar_class_name: "post api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/delete-a-scorecard.api.mdx b/docs/api-reference/delete-a-scorecard.api.mdx index ea3a072e8..76e227234 100644 --- a/docs/api-reference/delete-a-scorecard.api.mdx +++ b/docs/api-reference/delete-a-scorecard.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzlVE1v2zAM/SuCTi3gxc2ORlGgQHsY1kPRdqcgGBSbiYXakitR6TLD/32kP9POHbB2t11sfZAU+d4ja5mBT52uUFsjE/mQay+cDQhCFYV99uJgg0ArMiiAD4WvINVbnQqfWgepctlCXE4bQf5kBCjsVrhQgBeYKyT/rTZAaxBPQRUaD2ygxKYIUDltcHG+cfFF+3mwogDljCgpqFAbSmd6wEcizSF9FHzK4VaZTUMJBhXXsD7JESufxDEd+8UOsLIOF9rGlbOlRfg0RYpPFzKSqHZeJit5P57LdSQr5VRJFTu+q6WnN0slk1rioQICyiMlvSP3UpsbMDvMZbJsIqkZxUrRNpKGIrDpEPi7zihNAg8c3b4GHsR0zdhwbROsTMOzMjhx0QFGgRw8Be0gkwm6AE30sWxHQv4+29FVPOfWvy97gt5DGhwJpAV+Q0KgBJLVmq8c+MoaD55r+3x2xr+XmV3BVoUCxV1vKRsqk4jMLb0gu7dl1NWcyHi/jMesfVzPFd/ER4qp58hsJCft9oNYgiso9qBDVekjGUrm53eD4F/YHKFwz1x2BQ9YjLSS51c4TNxdBqrT6Z9tJ8ie3hxURl5NS/fWtu4aC7a/pffE5e0XMuXkOwSXizNKUlbWY6kMm/fRr8YRMGDwWhe1TK1BguU/nSQdKwg/MK4KRegTji3XdS+4ldwvyXCSHG2SNzpuis5Gs0OEZEKNhhy3rjfKwzdXNA0fPwVw3EC03Cun1Yb5Jmlm2vOaemGrCg9/4O/krm/MU/GB2TQLyaBew9LdKyqfdrR8JC2/MS65a/5h7u+aVO+oZZbaZn08kq6ub64frslDBVbIcW8/tr3dL5i92cdeN333Mn8ZtFmXc+p5QZPjYjTvbt506GfIYM2lr5um+QWZ9d/2 sidebar_class_name: "delete api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/delete-a-team.api.mdx b/docs/api-reference/delete-a-team.api.mdx index 47d4dd897..3f0b2f868 100644 --- a/docs/api-reference/delete-a-team.api.mdx +++ b/docs/api-reference/delete-a-team.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzVVMFu2zAM/RWBpxZQ43ZHYxhQoD0M26HYslPgg2IzsRbbUiXKnWfo3wfKTuO22bAdl4PsSCT1+PieR6jQl05b0qaDHNa19sKZQChU05gnLwYTBBlRYYO8KQhVK3TH+048GEfCuL3q9E/FJVbvty77kJa1EQ0q14nWOBRqawKlZC9FWWN5EGmjRrGpTBla7ChVKC5qIuvzLKtM6Vd7JGscrbTJvDdXbqvKjJcr06PrNT5llyuQQGrvId/Ami+AQoJVTrVI6Hh7BF/W2CrIR6DBIuTgyeluD1GC5r6tohokdKrlw/SQb6hBwQfC7BLsRASz86Q6OlE0MQASHD4G7bCCnFzAWEjwWAanaUiItqgcOsY85eU0QedAh96azqNnwO+ur/nxEsxdyqmED2WJ3u9C0wzMQ2k6wo44QVnb6DJxmn33nLWk4e/KWWcsOtITEnNYEKi6ASRgF1rIN9xhEeOy6Q2HFxJUVWm+RTUPi2I71XiM/JPQItWmgnwmgq/laeSQ9TdZYiUbmfgITKHrjzMNroEcjmpRVi/EAlGeCwj+RcxiJl+ZmanN42ROrVr9CYeTPG4D1cbNiodZQTWqCh3EpKidSemaGo5PLrl9+AgSGPxE+c3qmtVnjadWpeHM1e+WTnutwvE04f/XqxOrhD8os43SHfOQZjXOk99Af8OByRES8sRMIaE2nvh0HLfK4zfXxMjbjwEdm6qQ0Cun1ZZZ34xQac/v1Sy3P1B58WXW7aX4V5uf7eaFR3rVBP4HEg44HD8vsYjyKBoGOx3dliVaWiS9cTGL9tkxd/ef79f3IEEF5m2p2ENS7PzCF5zF9FrKEwpe2UBnU8Zx8kOMz/HT0W8z5i6P0UxREWP8BcX4OnY= sidebar_class_name: "delete api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/delete-a-user.api.mdx b/docs/api-reference/delete-a-user.api.mdx index 0bfc570d6..3b1415950 100644 --- a/docs/api-reference/delete-a-user.api.mdx +++ b/docs/api-reference/delete-a-user.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzVVMFu2zAM/RWBpxZQ43ZHYxhQoD0M26HY2lNgDIrN1FpkS6WkdJmhfx8oO43TZsOw23JQbImk+B7f8wAN+pq0C9r2UMJ9q70gGwMKZYx99mJnowhWNGiQN0X0SEL3vE/izlIQlh5Vr38qLrF4v6LiQ17urTCoqBedJRRqZWPIyV6KusV6I3gjtCiWja1jh33IFaqzNgTny6JobO0XjxicpbDQtvDeXtBK1QUvF3aLtNX4XJwvQEJQjx7KJTzwBVBJcIpUh4HfyuUAvm6xU1AOEHYOoQQfSPePkCRoxu1UaEFCrzo+5Da/Yae0AfmGIBT5RKimIfRe2HVGkXlhsp5VHw6MjYSABMKnqAkbKANFTJUEj3UkHXa5wRUqQmIIY14ZRyQcSOid7T167v/d5SX/HXd1k3Ma4WNdo/fraMyOaaltH7APnKCcM7rOFBffPWfNWfm7co6sQwp67MRuZnyqfgcSsI8dlEtGWKU0B73k8EqCahrNtyhzNyu2VsZj4p+EDkNrGygnIvhaHk4JxfaqyKwUw2FACZhI2u4HHclACXsJKadnCoIkTwVEfxQzm8xX5mcEu5/PAbDTn3B30Mx1DK2lyQYwyapF1SBByjJb25yug+H4bJ3ru48ggZsfib9aXLIknfWhU3lEU/Wbuf1ei3I4zPn/NfDIasAfoXBG6Z55yLMapvkvYXsFEkZfSChnJq0ktNYHjhmGlfL4QCYl3n6KSGywSsJWkVYr5n45QKM9PzeT9P5A6NmXScPn4p+9fxLckXG2ykR+Awkb3B1/glKV5F5J3PsYcF3X6MIs9Y3BWckvZrq5/Xx7fwsSVGQy5zLeZBlPD3zByc5e63vsgld21cmUYRhNktJL/Hj024wJ5T6aiapSSr8AU4JMbA== sidebar_class_name: "delete api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/delete-all-entities-of-a-blueprint.api.mdx b/docs/api-reference/delete-all-entities-of-a-blueprint.api.mdx index eb7ffa69f..81cc98cb7 100644 --- a/docs/api-reference/delete-all-entities-of-a-blueprint.api.mdx +++ b/docs/api-reference/delete-all-entities-of-a-blueprint.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzlVttu4zYQ/RWC+7IBbCvZbl+MNECApMCiC3TRpg9FYti0NLKIyKSWpOx1Df97z+hm2bHTFi3QRfsiW9SQc+acuXArE/Kx00XQ1sixfMi0F86WgYTKc7v2YmNLEaxIKKd6UZAJOmjywqZCCV9QrFMdi3leUuG0CUIb3uWEt2lYK0ciVkHldjG6nrvopno8WJGTckYsLb6rOTx25w5EnFH8LHgtZCQeExuXS3xVDHLyNguh8OMowrIfLSgU1oWRttG81HkyZM/D1vOw8Rz5jYmHCV6GwXaLb1qPFyM5kEEtvBw/yvtmUU4GslBOLRG34y9b6QFsqeR4K8OmINDlAwJeyN1Aambvc0lug6MMNuHVlWaqE7w7+lxqR4kcpyr3NDgi/VdQHCsjCmdXOgEdYlZvnTHzynsbawXymYxah2QvwlqHrC/Do4r5WIETzlMVO8KBQ095iodb6ZiG9KUgp8nE5CNHaU5xGNZnDQFs4cj76E3YIN5h65zJVKa1gseLWmIQcoKsubXQ3Jxjq45s2qXRH/P2IRWz4EqaDUAN8jbm7FxrPGDdpSyz1svNwEG/BrPRdCCX2nwkswiZHF+1mAuF1w5ydyy0Yk5STe4ANqM7Rv0APHtzLqJDhOvMetrry/W3VljvirAFj/z0FJdOh02VnXMUFPyPHyf8CXoV1njkMUJ7d3nJP4dA2kTvcsqXMcT3aZnnG1bp/eU3L3f9aKjFnFpuESBLkHPWoSHEgIPAx0/myVwHNc/phv84PIW4DtnNPRteR/jXrtztT2/W8eMOtiU3s6X2Ho6mSNHqLyKbwS7pLLiGEiuMDSJTKxI9Q2YOr6l1ywo2y0OeA7ZYrprKSHxvnUhLh+8OfASlc/ShAvkKLWKL3hOHuqmpBHnRuD6FNFN+mlBBhiU+AsnSV8JuAJJ5b8z2aodMBbEsfRDzfa2jWYHjqtB1GAn0TkTKlgNRAt5TWzp7t99x4j3JI5hRq0gt7vuvRVyINk1taZJDtm77RcHBM6ymRyZitq+hGQrEV9JXp7wa9bt3X0vU2qxUrpNpk44vM6ULlecWJKc6xqUKcc1FPafrBvZa0N+eqv5/K2gMU6PyaeXpSG8j2s81kA7H+eAQHeZzZpNugMhB3aTHMlpdRV0G+Wh7qlvvIsyMbp5J7qhu1Y770uU4pp2hqtC9EVrNjpcGpT+w6bXon1mmuhu3jbobOdj5A/VG4W2JkJz+repNshk9GakEu3bVKEpttV2HnO0/wZ+4/fQBpgy+FvhqdMniF9aHJaYuzJvT785d5fqj9yBZtpJbIIz/5zfEWq1AX0JU5EpXxVXlwLbJuUe5uoLhPuvwMj5zSzhIPCQKxn7gE7bbOYbOLy7f7Xi5viVxOibac96fuQ31NfrvXSjPkP+Mqunds9FQSzaqivPP0/W375Gvojtxr93jnPCL0wz0L2r89qfmlnkh/qkb5Zkw2iZlNn3obXgns3s36Tfmu/uP9w/3nPIlF0m/7T1Xba/5wwScdHbcD2vP/GShT265RjsUaKo3nXn95eyGpr221hz6ZLfb/Q63Q1aS sidebar_class_name: "delete api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/delete-an-action-automation.api.mdx b/docs/api-reference/delete-an-action-automation.api.mdx index e8efb152c..90b5ca9f5 100644 --- a/docs/api-reference/delete-an-action-automation.api.mdx +++ b/docs/api-reference/delete-an-action-automation.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzdVU1v2zAM/SuCTi2QxknRXYwgQIDmMKzAijU7tUGq2Ews1JE8SU6WGf7vIyU73+1pwIZdbH2QFN8TH1XxFGxiZOGkVjzmk0xaZnTpgIk81xvLtrpkTrMUcqBFZiFf3Fgwa5ngNCE/pg0TpdMrQbPuYG6iof9MNMtBGMVW2qDxHOM2LpYJlR442Q5LMkjeGJm4DNhzqpNyBcr57elV5lxh4yjCZdtdgiu0cV2poybcDYa7OQgXXYc0eIc7sbQ8fuajYMmnHV4II1YIx9BGxS0evRI8rrjbFoAsWGekWqLvSqoHUEuX8bhfd7gkigqB0w5XGAFn4fyZTDFVuZBgcOuUUmD7baYXHl/wi/Ype6I3Qrk92zsIBn6U0kDKY2dKqBGBhaQ00m19/nPkGA9GjMEvFi1UMjVgC5yAJYC3vR79jjN8KpMErOWI8K53d77/VUGb9kJTVSA5DIzRxjKdYCKYWvyiXtTAiXkOQxoY/DI2cNlwTIaDCEftyv0+erOOP3Pklg5flXazhS5V+oq76W59cpG8jXSZT7Aweo1sp4eUb4RlGI35aE2w9sSoTdmjv739V9BLtRa5TGd09WDdOQepcGKPNtUQMCIfSWAiqDjU9kegP10qib8FGjWpRD7zJx1jHinWbodEdnm8Dw7RocwzjcJppME7Qb8xj9b9tnlE1ZmKa04aM+u2RZQmR5+2CYlCHvQgJPGSQWmPbA5E+0R3EvTYSnfXetDzC2z3/WVUYv5G/vJlzpsWlIFI0av2LWmhvbt0Odk/4nls9PgZTSn5cJv9bo9uutDWrYQi8yb6fdPV1bmkTvtYxRON/Cv3n74SgX4HP11U5EJ6afhLrZqKeebrPhq2vbXD4/Pej5ecIclkXFVzYeG7yeuallHFhro1DtfCSCpRX1iptDTGCl2I3MIHpF99a16Ba/YHnpSLeNsaVFSA2H9KmuHwDSvy0lNXTw8Vdj9+GE/GRFFJfB2W9Jsv6WZAsC+edFrr4Vj6ksIuugyw1BkKZrgzDzvvOjTSaa0J97Su699kYiW0 sidebar_class_name: "delete api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/delete-an-entity.api.mdx b/docs/api-reference/delete-an-entity.api.mdx index ca88146ac..c3b759edd 100644 --- a/docs/api-reference/delete-an-entity.api.mdx +++ b/docs/api-reference/delete-an-entity.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzlV11v2zYU/SsE+9IAtpVk3YuRBQiQDChWYMWWPQyJYdMSZRGhSZWknHqG//vOFSXZju00Szes2F5kibzkPfee++UVz6RPnSqDsoYP+W2hPHO2CpIJre2jZ0tbsWBZJrWkReZLmapcpUyaoMKSKUMijnmbh0fhJEtFENrOBhdTl1zWj1vLtBTOsLnFvpji+nhaSd9jaSHTB0ZroZDsLrNpNceuIESjt0UIpR8mCZb9YCZDaV0YKJtMK6WzPmnut5r7jebEL03az/DRD7ZbfNNqPBnwHg9i5vnwjt80i3zU46VwYg4jHe2suAewueDDFQ/LUsI3U2thhsHpTOai0oEPc6G9XPe4It99qqRbYtfgFnxGj40zWUqTQbnHlpOfKuVkxofBVbL3xPnvczah9UkPrgAPKShgjwoPqNlQgO/WFuyGAqQ4qWt/EVPkxSiaNRxFKvi6d8AoH5wyM37EBleZscp2gNcmP0X+O4IkFYaVzi5URmEyiUcnhEh4b1MlgH0fW2tBF1Z3Iq0twfnj7KdO4rq+lzrHwy1UKvvycymdkiaVPnEy1zIN/XhXH7BmTnqfvAlLWNtv3UfxIUwrBY0nL3BVj8+V+SDNLBR8eNY6rhT47PwWbYP99JIr6b7I/S08sxFnNq991fiIcvBRmLBJxL8J51RXsoR0+Hqo3VXbwKdSWzPzwN0CRp55mVYOu3WWTVEYoHN4N6ItkFRa45GPMOf89JR+dpXfxIvbIPJVCr59Xmm9pCB+d/rd/pmfjWxR5paqGtzDpHPWeWZTgIGpw3tzby6CmGp5SS8OT8YuQnF5Q4IXCd7alevN7c06ftzOsexyMlfeQ9EYUVm/wq4J5LJOgpIms8zYwAqxkGxLkIjGZ27dvIZNhEhPBlss16k+YD9ax/LKYd/BH0EojWpaokR5FGGLCpqGWJpFhkhoVB9CWgi/VaZ2Qd5uyIQY68Q2JSgUIrB55QPY7ngRxHvMbRUGDB0gs7Vkj1WAd79fHX+gULvnT2AmLSOR3HffCrkgbZzbymS73royO2WNQDUlMWOTTc5MkM2+Jr6+4xlqjunZSrev0LTr3fPzb8W7yiyEVtm4Cfv9iOxMpS6P0JLRxrkIafRFHGFiaXzO6O8P1Zh/y2iMHkboca1pL67a7Qikw3HcOFiHaaawWTeL8F4s/0OeLM6SLoJ8sjrUB9ZJm+LJaq+frTnVcbdoh6XKaVzbtmtRqq1uXXepfYHK78hsNYZfibbYA9r20DU3nPxJbk0oVxVMdOqPuibypskVUmQ4ta6bXm7r4ypokv8Ifezq43uIEvhI+NnglIKhtD7MMeBBvLn9uhm52rTmT3rhilOhxd7/aXSORAT5OSSlFqrOo5reVRNed3xxBsFNgOFjeGTUaK8mkf2pCUFRgBS6crWaorH95vR6TctxUKXQy5SnmD8ymm4z9PaXZq45Yf/wqH3ESw+I3MN/DFDvKpKvc+XlFv3X5u5n/db9Gdk4a0QfTpG3Xh8Lrxu9j0Bty5RZbgNtTdiP8L/G9xdRv2wKfxX2gwm8Hm23meubDze3NzghKqoD20X7oS7azQtRdVDZ02oeNdOT/HTwyAWKOUNLuOzE487RA01zaKXJ9NF6vf4T+iIBCQ== sidebar_class_name: "delete api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/delete-an-organization-secret.api.mdx b/docs/api-reference/delete-an-organization-secret.api.mdx index ad7df1ffd..5246f94ec 100644 --- a/docs/api-reference/delete-an-organization-secret.api.mdx +++ b/docs/api-reference/delete-an-organization-secret.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzdU0tr3DAQ/itiTgko62yPphQCyaG00JBuT4sps/bsWsSWHGm06dbov5exvYmzSQq99uKH9I0032N6qCiU3nRsnIUcVrUJyrvIpLBp3GNQBxcVO1VRQ7JolfM7tOY3SoUKVHrixceNzz4Nj5VTDaG3qnWeFG5c5AkUVIsWd9SSZWWsunWetSprKu+VoLgmta5cGQUwnF6c1cxdyLOscmVY7Ig753lhXBaCu/AbLDNZuJjOP1+ABsZdgHwN32ZdQqGhQ48tMXnZ7SGUNbUIeQ986AhyCOyN3UHSYESHDrkGDRbbYXO44Ofwp8HTQzSeKsjZR9KvFCQlQOW2A6WxdpDxES0/azmKBqnQcn70hg9DaxtCT144jLh8ogeFQD2FztlAQXr/cHkpr5cNXNMWY8PqbkJCShpa4tpVkE9ngh4Z5pDtl9nc0Wy6LetnpBNIj35/VC/6BnI4moOdmXkDSb8FiOEFZkb6u1gx8jlSf3IFO/OFDs9GXEWunT/aOnlVE1bkB5rGbt1QbrgRvGRMXd1+Bg3S/CjQcnEpPncucItW4NPp13/LOJwY3UPpLJPl/2JqRrmZfnHWNWisCDSY2E9BWcN+CRrmNIZQjNHUkM9npNBQu8BS1fcbDPTDNynJ8kMkLzEvNOzRG9yITeseKhPku4J8i004Haq51md30/idq38dtXd4HrNmJWh7bKL8gYZ7OpzMfirmo3R98/VmdQMaMIpC89DeD6GdPoTfm3ecpnm8UJ4yQ2+W9P04Eik94cetdyum6TiihXKRUvoD5pgSPg== sidebar_class_name: "delete api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/delete-credentials.api.mdx b/docs/api-reference/delete-credentials.api.mdx index 2047d491f..04d9a105e 100644 --- a/docs/api-reference/delete-credentials.api.mdx +++ b/docs/api-reference/delete-credentials.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJy1VEuL2zAQ/itiTi2IeLdHUwqBzaG0h9BuTyGwijWJ1VUsrTTK1jX672VsJ3F201Io9cEPaUb6XnIHGmMVjCfjGijhvjZRBJcIhbLWPUfRuiTICY0WeVBEJOG2ogqosSGjbBSm4aogli6QcGGnGvNT8YKz95tQfAAJpHYRyhXMvY+wluBVUHskDDzaQaxq3CsoO6DWI5QQKZhmB1mCYVReUQ0SGrXnSaNBvoKN4sHoB0ZGNV6gY8BM4lk1dGZyghbwKZmAGkoKCfNaQsQqBUNtD22DKmBg7MlrRViqngLXBYzeNREjA393c8OPS1h3/VZaxFRVGOM2WdvOQELlGsKGuEF5b03Vq1V8j9w1lePvlvPBeQxkBiTucSKkalqQgE3aQ7liguucp5xXXL6WoLQ2vIuyy8liW2UjZr4k7JFqp6GEQT/ell0poTjcFixK0RmdgeULh6OxKVgooSbysSwK5c1sh+RdoJlxkOW1ghQvaiZ+fGVZBo5HV848vfmE7Tkj80S1C2MMYYxRjUpjgNzHauv6dkOW6/vozpcfQQKDH/S+nd1wBL2LtFe9M+PqgxHTlL1MZHf2+L+dqYE54Q8qvFWmYay9nt1ozQoOtyChT6yE0mh2unaReKrrNirit2Bz5uGnhIETv5ZwUMGoDcuy6kCbyO96DMMfaL75MqbqrfiH43iV1UWYD8om/gIJj9gO/4O8zvJoL6MeJuZVhZ4mLa8OG8frFOy7xefF/YIFS6zeNFuPfbbGF97gKqKXoRtQ8J2jfrWl64bk5nyqH6Z+2zGyPJFnEjnnX429+oc= sidebar_class_name: "delete api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/execute-a-self-service-action.api.mdx b/docs/api-reference/execute-a-self-service-action.api.mdx index 99cafdedc..b31b6f297 100644 --- a/docs/api-reference/execute-a-self-service-action.api.mdx +++ b/docs/api-reference/execute-a-self-service-action.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "post api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-a-blueprints-entity-count.api.mdx b/docs/api-reference/get-a-blueprints-entity-count.api.mdx index 1705987dd..7b8a87996 100644 --- a/docs/api-reference/get-a-blueprints-entity-count.api.mdx +++ b/docs/api-reference/get-a-blueprints-entity-count.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJztVU1vEzEQ/SsjcwCkJNtWcFlFkSpRIQQSFS2nNGqd3UnW6sZe7NmUEO1/Z2a/kpSEExIcuOzanrHH78288ValGBJvCjLOqljdZiaAdyUh6Dx3TwE2rgRykLjSElCGYMvVHD24BaAlQwYDGAsaQoGJWZgE5nmJhTfszuu83UNwC3rSHiHRpHO3HI3nPprUn1sHOWpvYeXYruccuj93AEmGySPImkSepi4pV2zVctvZq4yoCHEU8XIYLZEK52lkXDQvTZ4OJfKwizxsI0dhY5NhypMhuX7xRRfx9UgNFOllUPFUXbWLajZQhfZ6hYReLFsV+GIrreKtok2BzFsgBrzkzStjP6FdUqbi82qgjJBaaJ4OlOUTeNbTc29Sibsw6Nnq8VtpPKYqJl/i4Je8IOzchXwhZMf0U+YC7hIiSXvSkrA2cw3jqmIoAZPSG9rUQObMPYePpzMxeQyFs4EhM7KLszP5Hd7jpkwSDEExtDdnb361f7bYXW7hpICYFUDvnQ/gEg7MCOM7e2fHpOc5TmTg+QswpmxyJY7jiEfdyrvd6e06//zBtnTyYB3dLxhm+sDWtF+/3CfIUFZfq/BuzUym8LDj84HJCsCnQH1Ke0gXKequWqO+uPhXUBu71rlJ76VyMNAh9tt9qFLvkDpsMK40JQ0XjdCbYv4d6LfHSuFvgWYRWp3f15Ge5dtCZ24u0t/jNDhGx7rOHOtOcQtRg0atsYrW51FfPiHaHpNtFXWKG9YqU6Iuv+66ROlzPqjrUrowe02KaT3mUIYDnz253kiWGmV2ou27D+/8iJtdi7ksGZE3P+o+qdoulKFOeVdVd6WFq7cbysX/muPB5fUHdpXLN/k9H51J7gsXaKWtuLenv0fidt/z8TI0fWcDHQcHdbJVieOksOH/61K/Lk3KCL9TVOTa1AKrC2Hblt5Urc/ZcVd8PIlPvBrP6o/rhR8CkjO227kO+NXnVSXL3CK8tHwerrU3Uv91jaYmyJjLf6Hz8Pzd2U/eqy/tC/Ua/tBrdIKMrqitVDS3uFJmPHzkEj/xfFazfR2/v7pld10Kmfsaeaw10g4E/NFIz8XThJWvSPboljFrB1iBk969sZzc0Gqx8xbcs6qqfgJyMFo2 sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-a-blueprints-permissions.api.mdx b/docs/api-reference/get-a-blueprints-permissions.api.mdx index 3d074df25..af3abd764 100644 --- a/docs/api-reference/get-a-blueprints-permissions.api.mdx +++ b/docs/api-reference/get-a-blueprints-permissions.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzdVE1v2zAM/SsCL2sBJ252NIoCHTYUw3Youu5UBINsM7FQ23IpKmlm+L+PcuzU6ZLbTrs4+iApvvf40kKOLiPTsLE1JPBYGKfIekaly9JundpZr9gqQiaDG1RcoGqQKuOcpDhlV0qrtPTYkKl5fp1SfNN/Hq0qUVOtKktSLZWi08RIZQVmzyoch5pPuc18hTXr0MryomBuXBLHcuzma+TGEs+NjVNvynwmXdHM2RVvNeEs06xLu44d8rieUaqzGF911ZToLucQAeu1g+QJPo3NOlhG0GjSFTJSuGvBSVeVhqQF3jUojDjBXa8lvTL1d6zXXECy6CIwga5GyzaCWirI7sDCL5MLELMySHJL+OINYQ4Jk8foL8ZRvYUHOgMbh1JqW1h3zHhQZKvlaiLLHDrB4jDzZHjXI0mFfHlfABPqPEknqEMsoWukGrqA9ePVVfg57uwzrrQvWT0MkdAJbKGqsAIFRBKI9gQkEG8W8dsDcXuKiS6egIDQLG1G1j2VUmWUXDdmojh00akA745iJuh/BAn3uEYODmpK5jfcvUl26wUOmd/90MGgaiF8SVbXq7yyfbrhMsTfy3vq9v6rhIbm90Qt5lfSJDTWcaXrED5Uv0OemuODU8cUHPHdQmZrFrb+dxvulWB85bgptTAu3PX6tsM4PcFmIYGTiY0gOWOuKaEyA2IWDgXaNtUOf1LZdeH4xSMFV8hyo8noNIgpc5cbF9YyzytduvfenCpy8TC4+FL9K8eeoWKc1DqM6UZLWdnJ8lnm9sx/TLecOvPuy6OEax+onA7+cz/4wyKgP/nSe0fsnw3f4MOTKddiCCW2ujmE72/OJgwGG6MD7mXXdX8AfoVOcQ== sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-a-blueprints-scorecards.api.mdx b/docs/api-reference/get-a-blueprints-scorecards.api.mdx index e07c1abd9..7ae016273 100644 --- a/docs/api-reference/get-a-blueprints-scorecards.api.mdx +++ b/docs/api-reference/get-a-blueprints-scorecards.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJztVE1v2zAM/SuELmsBL052NIoCATYUw3Yo2u5UBINi07FQ23IkKl1m+L+PtJ3EKdKddtzF0QdJ8b3Hl1Zl6FNnGjK2Vol6KowHZwMh6LK0rx72NgBZyJHSQs7Ap9Zhql3mIbcONGzMDmtYlwEbZ2qawfIUA1xOg0cCm4MLJXqgQhNkmJsaeY2wDbo0tJcAPalys3bxbf95slCidjVUXBT0mrubNBFBWmD6AnIq5Z4zm4YKa9ICaXVVEDU+iWM+9rMNUmMdzYyNG2crS/jxVCm+nqlIkd54lTyrx+O5WkWq0U5XSOjkrlWe36y0SlpF+waZN0/c9IbTK1N/x3pDhUoWXaSMkNpo3kaq5gq8O0L8aTJu0+QGHd++1QHhdC3cCLZjKrwW1uNUCpHpVfPNQauBQC7scBuMw0wl5AJ2DMZjGhxT3kNZM7XcACN2qLPET2BLrEPf2NqjF7Cf5nP5OW/1M+Y6lAQPY6TqGDdzVVh+UjHjKhoYSFS8W8RHDD5uL1HRxZMWpFe3O7AeXMlFDoLqxkz0VF10KSD4s5gJ+EeRcIB1oOCoJmd+w/1JsmVgNM787kdKjaoWTBdndb3Kue3TDZUSf8/vwfL+K4dK8wNPi9mcm1SN9VTpWsLH6nfsjsnkf/BwxsAZ261KbU3M1X+vilcHuQh/UdyUmmVhgvshaMeRe1a7BQeeho43yTsO9GeOZ4OR5LftWnv84cquk+NtQCfG4eVOO6PXIjjPZma8rHnkc116/ItsVw+jIa/hH7r8IhWHca5llnea6/KOly883O/8EXWrqXvvvjxxuA5C5dQdL707xoXAv/jSW9sMz8pXzHox5YZdA+y922P4cPNuwujCQ7TgXnVd9wcuaWOo sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-a-migration.api.mdx b/docs/api-reference/get-a-migration.api.mdx index 1bb5994e4..a68b863f1 100644 --- a/docs/api-reference/get-a-migration.api.mdx +++ b/docs/api-reference/get-a-migration.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJy1k0Fr3DAQhf+KmFMLYp30aEqh0BJKKYQ0PQVTZu3xWsQrOaPRpluj/17G9m426baHQi+2bL2x5pv3PEJDsWY3iAseSrjtXDQckpDBvg+P0exDMhJMS1J3Bk0cqHatq83WbRi1yjivIjbXgcUE3qB3P6edFVgQ3EQo7+DLQR6hsjAg45aEWPdGiHVHW4RyBNkPBCVEYec3kC047WpA6cCCx61uHk/+7hqwvwGQcQ15ca0jNqE10tFJs4rziF6OTKu3ay7egQWmh+SYGiiFE+XKQqQ6sZP91OOakIkVhQmbct0nGth5iVCplikOwUeKSvHm4kJvzzv7QC2mXszNooScLWxJutBACRsSsDNoCcXusji2HIvxlDiDNsa7w+wS91BCJzLEsihwcKsNyRBYVi5AtucEKT7TnJB+VSNmhgPv0RMc3GfaP9nwPkkXeLEaFqc6woZ4QnO+DVO5k171UzzeX38CC9r8PJTL1YW6PIQoW/QqX75+RWLwybeXPo9QBy/k5b9kdgYW+iHF0KPz2uI0xnFx6A52l2CfkhjBQvksl5WFLkRR6TiuMdI37nPW1w+JWCNVWdghO1zrdO5GaFzUdQNli32kvwC/ulmi+tr8e9zPQh6s9urzDvukT2DhnvYvf7xcncb36uMtWMCkwzlNzP2UmGWhlGdPeBml+Ti9aoDPlozjnMecj/p5648VSzQPagWucs6/AN+IuUY= sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-a-scorecard.api.mdx b/docs/api-reference/get-a-scorecard.api.mdx index ac305fb3d..7a2d47933 100644 --- a/docs/api-reference/get-a-scorecard.api.mdx +++ b/docs/api-reference/get-a-scorecard.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzlVE1vm0AQ/SurPSUSNXGPKIoUqVVUtYcoSU+RVa1hMKsAi3dn7bqI/94ZwEBcUqlub73AfszMzrz3ZmqZgIutrlCbUkbyKdNOWOMRhMpzs3fiYLxAI1LAOBNKuApinepYuNhYiJVNFuJ23AhyJyNAYVJhfQ5OYKZQJJDqEmgNYutVrvHABkqscw+V1SUurtc2vGk/T0bkoGwpCgoq1JqyGR9wgYgziF8En3K458TEvoASFZewusgQKxeFIR27xQawMhYX2oSVNYVBeDdGCi8XMpCoNk5Gz/JxOJerQFbKqgIQLN/V0tGbhZJRLfFQAeHkkJLekHuhyy9QbjCT0bIJpGYQK0XbQJYUgU2Pgb/phNIk8MDS7SnuIMZrxoZrG2FlFvaqxIGKDi+KY2HrtYVERmg9NMHfJTvw8efJDq5inxl3VvIEvIPYW5JHC/uaZEDvEzsWVBK5CUVsa8FVpnTguNb3V1f8e53pB0iVz1E89JayobKJ18zQk5LUIYMOgEiGu2U4lODCeg6JJpyop54jtpFcgt0dheNtTrGPmlSVnkhSMlm/Gnj3ymaCySMT21V7RGbgmDw/w2Ek8tZTkVb/aLtC9lxnhCJ5NS33qWndNeZsf0/vidv7T2TKyXfwLRdXlKSsjMNClWzeR7+jBlcjw6cKqWVsSiRM/s+J0jGC8B3DKleEPGHY8lz3YnuWuyUZjnKjTfRG601ET0azw4QkQh2HHLeu18rBV5s3DR9vPVhuJVrulNVqzVyTLBPteE1NkKrcwW/ou3joW/RSnD+jZhE5Crdk1e4UVU87Wr6QjN+Ymtww/zD1cybWGaXMEtusppPo7uMTmSvP4pi29Evb0v2CiZt96bTXu2f5y4DNulxTqwsaGDeDeXfzpkM/Oo7WXPeqaZqfRDbgig== sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-a-team.api.mdx b/docs/api-reference/get-a-team.api.mdx index d71c719fc..da2d8eb0e 100644 --- a/docs/api-reference/get-a-team.api.mdx +++ b/docs/api-reference/get-a-team.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzVVU2P2zYQ/SvEnBKAa+32KBQF9lAEQYBgkW5PCx9ocrRilhKV4dBb19B/L4aSbXntFMmp6IWWOR+aee/NaA8OkyU/sI891PDY+qQoZkZlQoivSe1iVhxVg2xbZVQa0PrGW8VoOuV7sZN6iMQq0rPp/d9GUq1+3VD1WzkeowpoqFddJFRmEzOX4KSVbdG+qHLRonpy0eYOey4Z1u9a5iHVVeWiTatn5CESr3ysUoo3tDG2kuMmbpG2Hl+r9yvQwOY5Qf0Ej/ICWGsYDJkOGUmu95Bsi52Beg+8GxBqMERmBxo8Y5fkHvvcSQbvQENvOgQNltAwunsGDXlwx+eB4tY7JNBnMGrICSmtGk+JP08ppptg3lxgZ3w4/hu85Uwna2LDOcF6HDV4oedbRtod6qqh8RhcevN2IRHVZCrsvZqeTxQ2kQraQsFKfWxUTui0in3YlfuZYHSHFK8+BLVB5XsbskMnpIsjYRpin3CiGjQQfsue0EHdmJBw1FfgTky+f4ZDP4Ph9tTOjPZlM2JQsTnWfdnWlSKYMo5rDQltJs+7wv8GDSEJv4TG1TzJRNwO7RQR/HJ7Kz/nlXxBJo9bdCplazGlJoewE9XZ2DP2LCFmGIK3RcHV1yRxSxR+NOGMVtx8RTsLbUBiP1UXX5YC7kUQs2ql5/WoQfpa+Hwnj3dXmZnYuGI4jcGFVUMTqTMMNch43LDvUEJO0/LDIcehulbCGYAX9lEG5aSApwkHLYCtNRjnvASa8LCAYdLqFNoht9FBDc9Y0BJ11lBt76oilGov0IwgmqLtYaVkClDDYVmZwS92FcgQXDrkdOazEOkfIpWJnYNUT0wP/hMupv8+cxtpXrgwT1SLRrCbNkYTS7jnIP5lSd8/fAQNUvykwbvVbQE9Ju5MwXTO/gFZGTUD+Ab2o97//9+LCVrGv7gagvF9Ea0Qtp/pf4LtHUwTJZu2LvCsNbQxsVj3+41J+CeFcZTraUOLLpxPZhOO6/BfQfxP9vXV3l9wt/ywbE3I4lREujXkpaWfbO/dl3ki36ufXOZXKzzbe8f6DpUXekbZgfMkSK2T6d5aHHgRdLGrpcnjDvjw+yNoMFlEsJzBlzKD84Nkv1rQ2+GcSpBTVsLVkP1+mvBxPPpPpu9GzC0evAWf9TiO/wBDCGHp sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-a-user.api.mdx b/docs/api-reference/get-a-user.api.mdx index 27e27ebcd..3b939ad57 100644 --- a/docs/api-reference/get-a-user.api.mdx +++ b/docs/api-reference/get-a-user.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzVVU2P2zgM/SsCTy3giWf2aCwWmENRFAWKQXd6CoIFIzGxGttyKSrT1PB/X1DOTJIZb9HZPe3FHyIpPT6STwM4ipZ9Lz50UMF97aPhkIQMNk14iOYQkpFgNiS2NmhiT9ZvvDUpEhvfqZ3NXWAxgbfY+R+oWy1+X3P5R37cB9MQcmfawGRwHZLk4FgYW5PdGV2QmszSBZta6iTvsHpTi/SxKksXbFxsSfrAsvChjDFc8RptqY+rsCfee3oo3y6gAMFthGoJX/QAWBXQI2NLon/VcoBoa2oRqgHk0BNUEIV9t4WxAK/59yg1FNBhq0aF+Re16BsoXhBFJlsMOscUowmbnEXmRUl7wE6emJv4gAKYviXP5KASTjSuCohkE3s5ZHxrQibWDJjQVWlKQ92YYh+6SFHB/3Z9ra9LSJ9J2NOenInJWopxk5rmoKzY0Al1oiHY9423meHya9S4c1J+dcOeQ08sfkITdmeEYneAAqhLLVRLzXE1FplI9bmMm5idq8XGc5RPuQgz1gZ/Yuy9lcTztigoKc5X380uTwtzx3DYe5fb6pQ6M2ryXqidO2UswDKhkLuVl+YCNoFbFKjAodCV+Jb0pNS714YE3v4KrrD+SlZelHOWivG8dZfqs9I1IWxfSQGHhv4Dum6+8M/wZa8Twg+OOvEb/8p6jc+3DTvVFHTO64hgc3cGbYNNpGNMS1IHBxVsKWegqlJBub8p80SXw0lZRlAJ4P2jQiVuoIJH7cPen0kfjMWcQ4oXPmea8qdO9sTbo7Kcsu/9RzqcxO42SR34qN9w1MOa0BFnen23CTncS6P+WfNv7z5AAQp+koybxXWejhClxe5UL3hPYjCL43MpHU7y9P+/fiZqhb5L2TfouzzAnEVuaoIl7G9gEsQIBVRnV8yqgDpEUZ9hWGOkL9yMoy5/S8R6P6wK2CN7XGsBlgM4H/XbHZvvJ8S++Xzs4rfm395cs7ldiP4em6R/UMCODpf356jXwLGbFPrkcGst9XIW+uJ60m5+mqb37+6hAExK5Hkf73IfHz9091lYzxt8gqBPHavZkGGYpmQcn/wn0z9GHFN89FaWVuM4/g0+wj78 sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-all-action-runs.api.mdx b/docs/api-reference/get-all-action-runs.api.mdx index b82d11262..747a23435 100644 --- a/docs/api-reference/get-all-action-runs.api.mdx +++ b/docs/api-reference/get-all-action-runs.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-all-credentials.api.mdx b/docs/api-reference/get-all-credentials.api.mdx index 163a5f3e7..344a25c65 100644 --- a/docs/api-reference/get-all-credentials.api.mdx +++ b/docs/api-reference/get-all-credentials.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJy1VMFu2zAM/RWDZy9pdzSGATkMRbFLsXWnIAfFYmK1sqVSVDrP8L8PlJ3YSVNsl+bgGBIfTb73yA40hpKMZ+MaKOCxMiEjFxkzZa17DVnrYsYu2yGXlZxlJaHGho2yITON3FP24IgzR3vVmD9KUi2+bGn5FXJgtQ9QrGHlfYBNDl6RqpGR5LSDUFZYKyg64NYjFKCIVAs5GMY6zM4Dk2n2kAM2sZaERkMOjaoRcigJFaNeMeQQvT69BywJOYHU1qKGTd/nYKTRl4jUHjMUsDNodYD8DR2YDVfCgWlKGzVK11xhRhi8awIusvtd1jjOgsfS7AzqPBE1Al+NtdkWj2h9oobwJRpCDcVO2YD9JhUcyXCbuNmiIiTplVDpQiUGJer44cTP55sb+Tuv+wcyGTygzkIsSwxhF61tF0KVaxgbFojy3poyybV8CoKb6+HJeSQ2w1fc81yjpp2EYIq46XNI5f1bR7d9wlIkOc8/yHCpdj8pN91tnbOoGrk0+ipmssMV/+wc1YqhALHJJzY1CmRyzX9DRnO9LUB+c3XXwt4mB6W1EbKVfZj1nrS/9N17+o25a+TKaShgn9ztFVdQwPJwu0wqSG10OI5YJAsFVMw+FMul8maxR/aOeGEc9Pm1gBjOYmbG/Cn+GCQ72nOS3JvvOJupVeTK0bgQYJy7CpVGgmEOdy7BDVuJT0tk9XAPOUjxAxO3ixsh27vAtWomq8Ad8uU6uhzfbnL7Byy2oWnG37z0VplkyERlNwqyhsMtjIOxyaFygeWw67Yq4C+yfS/HwyISobQJo9eveeK8mQ9cS1cbe8Z2viUPykYJSt44KDJSOBRrWQSjwtLRgFqVJXqeod4sHsly8vTdt0dhLQqFc289J2+NL5L9bBsdc1+abihBnmL1q5CuG5zb96f44epdxNjiMVoo2vR9/xe8en+q sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-all-entities-of-a-blueprint.api.mdx b/docs/api-reference/get-all-entities-of-a-blueprint.api.mdx index 291826f23..5ef566a6c 100644 --- a/docs/api-reference/get-all-entities-of-a-blueprint.api.mdx +++ b/docs/api-reference/get-all-entities-of-a-blueprint.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzlVllvGzcQ/isD9iUGJK1tpC8Lw4CBuoHbog5q98k2JGp3Vst6l9zwkKMI+u8Zck/ZUpwURuO2LytxOJzjm3PNUjSJFpUVSrKYXefCgFbOIvCiUA8GVsqBVZChTXJPA5RWWIEGhPSXGozK7APXCAm3vFALmHODKSgJHBZiiRLmhcNKC2knJ3MdnYbPtYICuZZQKnrK56SzEz2CJMfkHjzN5gg3qUpcSbfcm3n3Jre2MnEUEdlMFmgrpe1EqGjuRJGOvVHj1qhxY1RkVjIZp3QYW9URf2g1HkzYiFm+MCy+YecNkd2NWMU1L9Gi9jdrZsiwkrN4zeyqQgJsrhS5Iel1ihl3hWVxxguDmxETHtAPDvWKbiVJoSN+TAqX4jThReIKbjGdVlpVqIO+EdP4wQmNaSNl9Cg8FxnMrHY4G8FNLwJ6EX8Pm8QZq0rxCccUI1zoALOJEiUzsXDEGHArVYpFZNC6atxFNOp1R61F9HjckFfRATwIypo5QuN7CplWZYhri36dFmwz2gEw15p7AIXF0gzoxpL6BdvsAVrIoOx5SM8oTb0KUBksObllevtugoEr+OXq8veXzLq/DCFEDrjEEroHE7iUxcprNNja0IKmCW4tCTSqNm+SRlNRbLCG7GelCVZeVgXGMFvDLevDMWlDcJF6NzKB+paNbpkYHDezFwW9iTB7hRj7HkZwqrIU1g5z8MUBfZJxOxFukByxUsjfUC5szuKjFtaK07FDtau1aa9pS4vvCI8hvybXenYPvHe2EwUPuTJ9AYYu/8CJ3rb6tiSpBRpMnKYQhQY4p55N6qlLauRpjF2r9JwtliFljg8P/c+2WVcuSdAYyjr29vDt0/tLia2tmfIDiEAC1FppAyohO8jh+FbeyhPL5wWe+j+avgAnNj8994wnEf1rKT/10hs6/eitZ+npTCo7zZST6Yxu045+NsRL2DyYRUmwFL6LzXp4Z4SdAZICQUojpNUUtaYGr4+PX4vXQlItinTqEwmN3fb9euiqLy5IFdY+ltyvAqF2wqJQ5/aXnP5xVyp8L6dplkteTIOmR/GW0F7XhnR27HeOvKP1IFdUhoz6FRvVxRuzaHkUdeljovWuKt5EXf34MtPLds1wuiARbTPklRj0wtCxnzI4s8UzqNsrH5+6Jtvq7Rt9JX7FQQc/c+SLFp/CEGdNO8qp0ulV3fUzFZ4LW3j+96QPzt5fEKs3vo7s0eTQR71Sxpa0GhF7I/0d2u0VkuLP+yJ7PDfWjDYQS8z/+8W0DpbFj7RvFVyEogopsG7S7YYtj4ixTzg6xHsGBw7WW5oC1r9erz02f+pis/Hkeq77TEyF8bm+Z3saRui/vZvuCcI9Fc/zW33YeYgvlO7XI/oK1qbvupp+EfN+wf/3ovtPLqXPp+8WlHf+oIXH8hv7wJs/msX0AF5oCd1jfDvC5GpoeevUzua3uRvO63fn18TOnW+gw4l4HyZi88c7v1PT41FZq/Vfn4c7n5zQpASat6cde32z90Ezefuc9x5sNp8Bd0VM6A== sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-all-organization-secrets.api.mdx b/docs/api-reference/get-all-organization-secrets.api.mdx index 6d8806302..f1d451c10 100644 --- a/docs/api-reference/get-all-organization-secrets.api.mdx +++ b/docs/api-reference/get-all-organization-secrets.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzdkk2P1DAMhv9K5BNI2ekMxwohrQRaIQ6sYDiNekhbzzTaNimOUxiq/HfkfiwdafcPcOmH89qxXz8j1Bgqsj1b7yCHY2ODIh8ZlWlb/yuoq4+KvSJksjhMYeXPihtUAStCDso6UZHydDHO/jFSa/e+pOzD9Dh61aIhpzpPqEzpIz+ndsaZC3boWKo8emKtqgarJyUqueRU+yqKYCpbvGmY+5BnWe2rsLsg9554Z30Wgr+j0lSZBO6W+m93oIHNJUB+gq+b9qDQELCKZPkK+WmEEg0hiYzQ1PmSD0UqNBCG3ruAAfIR3u338rq17SOeTWxZfVuUkJKGDrnxNeRwQQYNveEGcsiGQ7Y1KluvkoZoQApTP5FayGEd1vR2Mysk/ZIghhvNZsLvVYPd3P465wh87RFyML39glfQ4Ewn//eRG0+rTRqszNegqZGmqaw7+yndcit62Zm6f/wMGqT52Y/Dbg9JQ+8Dd8aJfKn+gDwTtHFA/XPgxtURKu8YHf+vXM4LYPzNWd8a68Syaa3jAssJhgNo2PY/YbKwqaHxgUU2jqUJ+IPalCT8MyIJ1oWGwZA1pWzqVGyZfPh0BA0myjVbFp4mFpYPAXE9chIfTBtfgmQST09B88WUcZxJS+lZPx+9mrFAt6rFnyKl9BfwTKLx sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-all-teams-in-your-organization.api.mdx b/docs/api-reference/get-all-teams-in-your-organization.api.mdx index 1f812af69..f55b4b2f9 100644 --- a/docs/api-reference/get-all-teams-in-your-organization.api.mdx +++ b/docs/api-reference/get-all-teams-in-your-organization.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzdVU2P4zYM/SsCTy2giWd6NIoCc1gsFgWKQTs9BTkoEh1rR7a8FJVpGvi/F5LsxJnxtoteCjQHx+aXRPI98gwGgyY7sPU91PDc2iDIR0ahnPOvQZx8FOxFg6zbJBO+EdyiYFRdELZPBiSePLHwdFC9/VOlWJsf91T9lB/PXjhU1IvOEwq195GLtxS6Rf0isqBFsTVexw57zhF237XMQ6iryngdNgfkwRNvrK9C8He0V7pKjzt/RDpafK2+34AEVocA9Rae0wGwkzAoUh0yUhKfIegWOwX1Gfg0INSgiNQJJFjGLizkgcn2B5CAfexSRGtAQq86BAmaUDGaRwYJcTCX94H80RokkDd1lRADUtg0lgL/UkIUiVNvBNgp6y5fg9Uc6aoNrDgG2I2jBJv69SUineZ71dBYdCa8OT11FUVR5Xa+qp6vPW08CVS6zT3ZiE+NiAGNFL53p9yWMKC2jUUzx3i1zok9CttrFw2ahIJkSBgG3wcsvQcJhF+iJTRQN8oFHHcSAupIlk+5GXtUhJSKS6hMzaVnyWwOlTvyw/19+rvN6VdksnhEI0LUGkNoonOnBAHte8aek4saBmd1hlP1OSS/JQK+NeCECL//jHrq8oDEttzOvyzR1J+ukGGKuBsllLz+GXJfOcCa97Ac55avKK7gXEFz46lTDDUk0N6x7TC5XDH8zS4XqK9d4aayK/qM5n9fkUKStcBXhq1pL2xbU85cW9NNvHuvmn5LqG+nfsuEjJ0EZYxNhVDuaZFEIUTx7ZBbb6CGA+ZcFbdQQ3V8qOZIAek4T7BIDmqYZ6Ma7GI0wijXDGK4sVnQ8LdEhlLUmYzXpgz2Z1wMl8fIradpvsM0gFpUCQRlIDU+u1t2yT7vhMenTyAhXb6w7GFzn4vtA3cqg2OK/hE5r5fbvbJcKW/H2vnK9P/B3io1Z/yDq8Ep22eaUEZ5AcQWjg8wD5OdhNYHTtLzea8C/k5uHJO4bIQEFGOD2rvL9P3b6v03+2E16Rc8LTfZUbmYjDJsj4psygnqbRqsE/hSssXrUWsceOH1bgGkKBe+ffzwDBJUTOVdwv4lw356SdFvpvsc+y0fyhXSM7Fw1eV8LqQax4t9UX3VY0pxtk4l2o3j+BeH5luU sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-all-users-in-your-organization.api.mdx b/docs/api-reference/get-all-users-in-your-organization.api.mdx index 1c1f8f577..2d70efca5 100644 --- a/docs/api-reference/get-all-users-in-your-organization.api.mdx +++ b/docs/api-reference/get-all-users-in-your-organization.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzdVU1v4zYQ/SvEnFpAsZMehaJADsViUaAI2uwp8IEmRxY3lKgdDp26hv57MaRly1ltm+4eCtQHmRzOF4fvzRzBYjTkBnahhxoeWxcVhcSotPfhJapDSIqDapBNKzIVGsUtqhSRonK9KJB6CMQq0E737k8tvlY/bmn9U/48BuVRU6+6QKj0NiQu1pUyLZpnJQJx+WSDSR32nD1svmuZh1iv1zaYuNohD4F45cI6xnBDW23W8rkJe6S9w5f19yuogPUuQv0EHyQAbCoYNOkOWXb10xGiabHTUB+BDwNCDZpIH6ACx9jFmTwyuX4HFWCfOvHorGw67TxU0DiK/KvuECrw+rwcnOFEsoqsOUVJSNxVMFDYOytZVGAINaO9Z6ggDfa8ZtRdXPXFVdlMZmfB3LZI5h4oeDx7KJv5+04yF+9t5y77gQKjYbRnyTxMkVzCbMaxAido+ZSQpHY5YA2NQ2/lgq8xhaocZTC96J4viGoCKdSmzYhYqfeNLGylQu8PGRRxQOMah3by8eK8V1tUrjc+WbSCQVEkjEPoIxbkSd74KTlCC3WjfcRxU0FEk8jxIUNhi5qQ5GkJta1TQYyoTa4yHn64vZW/6zv9hkwO92hVTMZgjE3y/iAANKFn7FlM9DB4ZzKY1x+j2M3x91aHJzyG7Uc0XJA0ILEr2YXnOZb7wwWwTAk3YwXlXv8M+C8EKIj/jBfjnANLp2dWLB1OPFk6OzFn6cjZRXERLIU5k+7NfBdsX8C/0A6aQJ1mqEHocMOuQ4l0YcebTQLtvuFZFksxzkGfO1bmau4T/64EmfNfn12//PCv8stamzH/rk8KZitB96YCba0Tmmj/MItSSF1sO+Q2WKhhhzkZzS3UsN7frSdPEWk/zYBEHmqYpose3Gy4wFgtKaR4pTNrJb8Locutp4ZyqdrgfsFZg7xP3AY6TUg4NdEWtTT40lSbkM0de9HPU/X+4T1UIMmXTnG3us3YDpE73V+qDe+Q84C+nszzofy6NR8v3ep/MPlLzRn/4PXgteszLyn3rgKIJ9jfwdQQNxW0IbJIj8etjviB/DiKuEw1AYp1UW/9eYL8bfX+mxm3eOlnPMyn8V77JEoZtntNTu4E9ZMMhxP45LLF6t4YHHhm9dkQEy9nvr37+REq0EnKO4f9c4b9aSHerybU5Ps1H0oK8hUWLpocj4VU43jWL0dftDhdcdKWEknP+QuupcnB sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-an-action-automation.api.mdx b/docs/api-reference/get-an-action-automation.api.mdx index f4824f280..a642765d9 100644 --- a/docs/api-reference/get-an-action-automation.api.mdx +++ b/docs/api-reference/get-an-action-automation.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzlVUtv2zAM/iuCTi2QxknRXYwgQIAVxbABK9bu1AapYtOxUEfyJDpZZvi/j/Qj7/aywwbsYutBivw+faRKGYOPnM5RWyND+ZhqL5wtEITKMrv2YmMLgVYkgFEqMAURAyqdeWEToYSHLLny4FY6Io+ITxHWCVWgXSqe9UdzF4zrz6MVGShnxNI6Mp5TlNbFC2XiPSffE1EK0atgE475FNuoWILBent6kSLmPgwCWvb9BWBuHfa1Ddrjrui4q73jgssmDdmTqBZehk9y0ljKaU/myqklIDjeKKWn0Eslw1LiJgfixKPTZkG+S22+gFlgKsNh1ZOaCcsVTXvS0Ak0a+LPdEyp6kSDo61jgkHstplExtf4BbuUa9rXyuCW+y0CBz8K7SCWIboCKgLgISqcxk2d/pwoprgE0YGKQ9XhZEMHPqcJeEZ3PRjw7zC9hyKKwHtJ8G4GN7x/c319avbVQJd6YlknRJAA56wjXUSUDeUXPptnM0I1z2DMA0dfIUaYjm/ZcBTQqFv5uDu9XaefO3CLxy/arFSm4xkzAB5fyCbe7jKxsUIlcmdXxHAsYgteGIuCKG212yi7ueHWuwsUdJky9n8BLWU+S2xh4lOcp3JZa2wQbtHviWytGh7q096D/eGcJP7WXVNBGpXN6kiHFEyM6LabRLZ5vA2O0FGNp5bKRlLDkL2mckMZrIZd2wjKk/qtJJeXW3XNoXAZ+XTtR+V6r/sQg+cMCn9gs1evD6zDphi7qt02HfL8DJtdZ5kUlLzTv+rrlm3zSanCyauqm1Fia3eNGdvfUzwxuf9Eppx8c5XD/oCvObcel8qweXv6HVArNqe6Om5fpYwsMW/wv3gqmptA+IlBnildl0h9v2Urnie5GpJh12N7Mjx9AOi+U+Kbjctyrjx8d1lV8TI1Mcc9m4Yr5TRLtdZYrD2PSamJyjy8cwUX39q34FL8+btyFm6nRsNSpO5b8IyGr6TNc89dNd0vtLvbR6anYK72lf1aK7sdMOSzYY4l38TkLxfaWZcRKV5Q3Yy35s3Omw5tBXXWDHpaVdVvvBgquA== sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-an-action-runs-approvers.api.mdx b/docs/api-reference/get-an-action-runs-approvers.api.mdx index 673c795d3..94967772b 100644 --- a/docs/api-reference/get-an-action-runs-approvers.api.mdx +++ b/docs/api-reference/get-an-action-runs-approvers.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJztVUtv4zYQ/ivE9NBdQI6SHoVigRyKRdBLkKYnw8jS1Mjimia5w6GzrqH/Xowk27LjYIGivfViG+YM5/E9uIcakyEb2QYPFTy3NikKmVFp58JrUruQFQfVIJtWcYtKx0hhi5RUaJRWKaKxjTVKG7lDUfY3vy6p/NR/PAflUJNXm0Co9DJkVhvts3bjPdqpJtCYnAplWjRrJWFSa14HkzfoWcvx4kPLHFNVlnUw6WaFHAPxjQ2lIdSMs4SumSWkrTU4w+8RyaI3mMqEfH441pvRUpvyJxN8Y1eZcDb0Njv0NmsCHWI/3kABrFcJqjncD8M+ZZ9gUUDUpDfISHK4h2Ra3Gio9sC7iFDBMgSH2kMBNTY6O4aq0S5hV4CVtX/LSDsowOuNhFtvXK7xJaKvrV+9HFfeXzDF66FRX5gyfin6fQ3IvVrnlHYpKELO5PujnASy1zaoVm9R+cBqh3xAsx6gvYAQCiD8li1hDZWU6YorwyUm61dwmCVqbk+jUPYvtn7T93OLytbo2TYWSZh0Xr+n3av2fOLeiXdNoPf6WxSQ0GSyvOuRWKImJEGMUNcV9XhJFGGKwSdMMsgvt7fydd7iEzJZlNWkbAym1GTndkICEzyjZ0nRMTprenaWX5PkTRcUKUQktkOVsJ4sTXvBG33eQDWX1hddASecJ4FEWkIt42b6f1h+RcNQXBQRmB/qq+gk1oxXT84GvzwvwGfn9NLhuONuuvX5oeLh/kV3GRDWIhFd11YKaPc4abhXwSU53tt81/V3b5DbUEMFK+znF75VUG7vylGppcBc7gfqdeVUPaL/g0ozOajgYCk62omjgDD9bUBOZzETtv0hoA8QHDh3gjDa33Ei7/vMbSD7V08bGGXToq6RoOtl1IQ+3bIsHR4Dsbp/fIACpPlhSXc3twJdDIk3uodtvP2zqNpPtPRzUu8ayP5E5v+9/0feP6DJ+J3L6LT1sv+eI/uRhHPY3kEBY5K4U+6/qqMLnoBYFNCGxJK03y91wj/JdZ38PTwGwtDaJtFdfV0nU+w+PI2C+6j+8yfh6h7WuPvBw7XVLkteL5utJjtYyj8d8197Qa6Oc+bSx84PY45wduLZo25ljuHw3hiMPEl780bIAo4m9vm3Z+FFFv5MHWPdO8b4Q26/2tKllQwtyKcY2NWU/X7wo647xg9H72aMI55Alsm77m87Npd9 sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-an-action-runs-details.api.mdx b/docs/api-reference/get-an-action-runs-details.api.mdx index 1551421cd..db319bc06 100644 --- a/docs/api-reference/get-an-action-runs-details.api.mdx +++ b/docs/api-reference/get-an-action-runs-details.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzdV99v2zgM/lcMvdwGuHVX7F6CIEAOG4Ziwzb0uodDGxSKxcRaZcmjqHRZ4P/9QMt2nNTtNtzD3a4PSWqR9MePP0TuhAKfo65IOysm4qrQPkEXCBJpjLv3ydaFhFyyAsqLhApIFJDUxidulUibyJw1Ewz2dLrEbNZ8XLnEgESblA4hkUsXaCDo0yQvIL9L+DFbvFYuDyVYkiyyeFYQVX6SZcrl/nQNVDmkU+2yHEESnHgwqxMPuNE5nMDXClCDzcFnCCsDOZ3EV51U6NYI3mfPT0UqSK69mFyLecRxGawXi1RUEmUJBMiHO+HzAkopJjtB2wrERHhCbdciFWBDyfqbFyIVm3OxqFOhmbIvAXArUmFlyQobQM9cpgLhS9AISkxW0nio08fNd7YqScXeFAZ7q5VIH8QIEq3Akl5pQI4Dk7jntwnZvbTUxy2G5gASYYB6kQoPeUBN28b7JUgEZC8RpJpgwxFLIfjKWQ+eoZ+fnfHXIahLINSwAZX4kOfg/SoYs2Xic2cJLLGKrCqj8ybK2WfPekNKKnQVIOn4Fnc3oEna7T4EDJ3Zx2AHIm75GXIS6ZEZrUbZXpoAFeoI63sWOqpHLZEmA/uT633G2GBMTJPc2aclFBggGEJdOmdAWlHXw6hdD9GwIv/DwfulnYip+4s7cQj10JEmUArUnMY6y8phKUlMhOLuRroEVvAuYD7uTmt1MQA0ryp0G2mG8h3wvcI4ysd73fzdO5GK+fu/xOLY+0aFEXiSFPxoQOLRO7kE8zTpRtu7oYRElFzwreQiFZqgHHsJvyWUpcTtKAI5QkufXPH1x5wctLURk8EDXqin/WHHR4itGW4lt8ZJ9ROIxqPEUNA8mU8BdUPCGg76XJ/QqfBbmxforP42nvKpKIEKN95DC5CquTe/V7eXn97fXrx6hI+lUz/Qv3gEuG1ukq8/0LIx2IsxzPFvf52NRrFLvn3RdMnHqnEGUX+M51uo1BOnre7PdIHW4I+rPGhSou+vByyNtI6+5/RF/aDq3R3zIZXSbFGajwPamyHneFb58FZEyl+evXw4NHyw0I0vK8fjprbrBBAd+sTleUAENbmxN3ZKcmlgxj9wdmOTZErF7DULTjMq+iev9tbb59OsUdirqdl0ObOOblcuWDXNlrNpRqo/vDqcpO41xaGXKdIK1HDwupc+sY6S1lJjpXtf1gHmIL48P//v+K7tRhqtbjms4GmUASVJ7l1WDqKjpex2gLghxNHtKc9/HxsV/z3PCdBKcwvRxJHjc5t0EhFND+ZxDwcNUqyhaUQ8wU9EtnmRxTzyGY/R2S4O8zUXF+Cm2zeaFi66hUdWerDvCN4YHgoEfyAzmOH/5HjEDthN8vsJutJvYbCmzAMVDvU32baGZv2IHb1xS9uVa9TjUCU+OqRk/vGCl592w5mIF6dnHOXKeSplc1221t8AHS6Hv/lubzxeZ3b7BeH/vH3GKPD1lVVGaju4v2PKtJtlmzSiWW/4a9JugYtUFM4TC+52S+nhE5q65sdxAeVsUtpzaqq+Gd/B9mAl3UgTGEeTNhuJmsXHVR8N0rPL9kJ4nvyDTXSUkINtr8faudESUS/62aNBHg/neQ4VDdQe7Jrscl+sb15fMdmBmR/WyF1TI+0Ptj4K6bh4IgT+5JIdVdntYgXWdS8fjx7VaF3spJmhRV3XfwOJuRt5 sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-an-actions-permissions.api.mdx b/docs/api-reference/get-an-actions-permissions.api.mdx index 512842f39..c8465004e 100644 --- a/docs/api-reference/get-an-actions-permissions.api.mdx +++ b/docs/api-reference/get-an-actions-permissions.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJztVUtv2zAM/iuCLmuBJE6L7mIEAbKtKIYNWNF1pzRIFZuuhdqSR8lpu8D/faQfidOmPQ3YDrvYkvgQP5IftZExuAh14bU1MpTXqXYCbelBqCyzD0482VJ4KxLwUSp8CqIAzLVzpO+ETYQSDrJk6ADXOiKriD2NJisMpvXn2ooMFBqRWyTxiny3SuLqw+zjQEQpRPeCj9n7PLZRmYPxilUWR6n3hQuDgI7d6A58YdGPtA0aF26oTDxUpbd5re+CCEF5GPZjGsIjxazBROACB35f2DnClYqC45EcSK/unAznctZI5GIgC4UqBw/Igo10FHOuZLiR/qkASpvzqM0d2ebafAVz51MZnlQDqTmnhaLtQBryQLvmvqWOCaNONCCJntcAxE7MOebEtDnjcjwo43c16dcjsdiknpwi/Cw1QixDjyVUhMJBVKL2TzWGFRWFLg/nCxYhuIIcgGNQp+Mx//aj+l5GlD8nCdXZ+Oyl/JuBLtTEcutQQgQgWqQ2iehiCiW8MTdm4tUqgykvkL5CTHw6PWfFSUCr7uTTznt7Tj/cM4unt8b6ZWJLE9+SNN6eX+8S9qB927do15TWuJ/bB+UEuRC1i9ZDd03QxVlDPj39VyBrs1aZjpdcX3D+JfBYebVDG1toMBJDWgY3/G6a+C3Q7w/1wd8CTeQzKlvWN+1jnhnRiZtAtnG8Do7QEZ9TS+yQNFXkoGFpKIP1STdbgs0LrlZBj22SGYXrbiiUmJF9N69UoXvjirJ5SKF0ezo9in7n4jRs7Ii6HTZk+QWedhNlVhIQ1L/qCSjboZOCismqqodQYmtz7TPWv6T7xOzyM6ly8E1ZT0ZjLnlhnc+VYfXW+wXQvDYtm945sZ+Avd7YyMhSIYz//5A0D0lTLw+PPigypWtS1V2wadttLtcnpNia0io89Dz0U049klKN2HSzWSkHPzCrKj6maYA82mm5Vqi51eu+jLXjNXV6ojIHb9Ts6Kp9Mo7FH3qDDmaga2PDPUyzrOQdLe+pqQ+9j9Wiz9aL82vOWMnp61PivqZEu2DcB695zpXmTv4yQw+aTIgqggg33ao3klcNWup12gx6UVXVb1BKSpA= sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-an-actions-run-logs.api.mdx b/docs/api-reference/get-an-actions-run-logs.api.mdx index 12026f279..168e6559e 100644 --- a/docs/api-reference/get-an-actions-run-logs.api.mdx +++ b/docs/api-reference/get-an-actions-run-logs.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzdVttu4zYQ/RWCL90FlCgJsi+CEcBFF4tFCzRI0yfHyNLiyOJaIrXDkbOuoX8vhpRtOVbSBijQoi++kDOc25kzs5UafI6mIeOszOR9abxA1xIIVVXuyYuNawU5UQDlpaASROWWXhToaqGsUDkrCmzt+WSB6U34uHeiAoVW1A5BqIVraSDoE5GXkK8EH/ODM+3ytgZLikXm70qixmdpql3uz5dAjUM6Ny7NERTBmYeqOPOAa5PDGXxvAA3YHHyKUFSQ01k0ddagWyJ4n74/l4kktfQym8lp9OOutV7OE9koVDUQIF9upc9LqJXMtpI2DchM2rZeAMpE1saauq1ldpnIWn2Pvz9cdIk0nLdvLeBGJtKqmtUqUxuSyUlyQfS6Ij4sXBHzuctwzKJMJMK31iBomRWq8tAlLzv3gg+uKDyMO3Fq3K9M8ybbntDY5d52o6g8mMbWPho9atposGQKE81z+Q/ICFh7UpYOgItgczjiG2EL3TyRHvIWDW1CARegEFBmszlfIfjGWQ+eHb+6uOCvY5fugNDAGrTwbZ6D90VbVRsGTO4sgSVWUU1TmTygM/3qWW+YkAZdA0gmWnGrQZKU5XqAZazM2N95l3ByfnFLPxRDVCxoCOrhuVt8hZwreGzC6NE6YGs/j9/U4L1awuhdbCr94+a12ymd3iaycFgrkpnU3JZkapBdN6zQTAYQRMcObgyNDk3Mu+fqbsU9qrQ2nHtV3Q7yEKD5HGEvlbMLT19fXJ8i4FcLOyQWjinP2KUARIdeuDxvEUFnD/bBTkgtKrjhH3jzYIWYUHnzkQUnKZX7k58Or/fnkzQoHNT0zRfr6LFwrdVfJinp/fn9cT88GYqc26BbGw162D5PygvrSIRn+ld2ptKdr1zE66ur/0rYxq5VZfQjFxk8nQavFalDtNpBjLFWu+kTZ1PsvteC/jDW7f9W0ARoVfUYLB3HPLVidx0d2fvxcnCho6l0WmZyGRg+sG8m0/VlGtHjUx606TYScZcyjUqmSlzvRl2LlczkbtaqxgxGrWTKPxVo/ZHMgHt/43pEdtox8IHdGvMzDObStKXSofkj8Kns50cJSvMoC/OkcEHdUMXytw5JTG8/y0Sy87GSl+cXXOXGeapVIOT+9U9Ah73kBx/aqI/+CAvbA8H/j5eeWAGC75Q2lTKhM0Jdtz1mZnJ9KRPZoyaSNX9l+xEekjdPZOk8sfx2u1Aefseq6/g4Lh0MKG08Q1SPU/Nxvv/+HjQawgo2gyVrraqWZQJq3+bFXyxCrxjfb1cH63P+g4bNvzEh7+76ofde/BM70qjbRyvJ3uldOH25O15Q+l7kEOLlNM+hGcZ6shBx7HtO+vTxniHVMr6GLLAKLND/4NdHXXpOD9EF/uTyjqpst5Fjum4vH69e1OhD3Elzhnj7+BMFJoNz sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-an-entity.api.mdx b/docs/api-reference/get-an-entity.api.mdx index d6be9a346..381c02e3f 100644 --- a/docs/api-reference/get-an-entity.api.mdx +++ b/docs/api-reference/get-an-entity.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzlV1lv4zYQ/isE+7IBZCsJti9CECBA00Xaolk06VMS2LQ0sthQpJZHsl7D/71D6nRs59rFHu2LLJHDOb4ZfjNe0gxMqnlluZI0oZcFN0QrZ4EwIdS9IQvliFUkB5sWhBFTQcpznhKQltsF4dJLaGJUbu+ZBpIyy4Saj49mOj4Oj0tFBDAtSalwn81Qe32ag4lIWkB6S/yaLYBcZSp1Je4y79DNm8LayiRxjMtmPAdbKW3HXMUzx0U28pZHreVRYzk2C5mOMvwYWdUt/tRa3BvTiFo2NzS5oqfNIr2JaMU0K8GC9jtLatCxktFkSe2iAoRmphSGIfF0BjlzwtIkZ8LAKqLcQ/fBgV7grkQt+AkfU+EymKRMpE4wC9mk0qoCHexFVMMHxzVkjZboQSLOcjK12sE0Ile9CtKreB02qTNWlfwTjLi0MNcBZhOnSuZ87lAw4FaqDERswLpqNBMOKo3ScW87bj3Cw6NmeRHvkXsuBJkBaWLPSK5VGfJaV0tdFHQVbYGXac08fNxCaQbrxqLxOV3tgJnLYOppQE8kCSaIyskdw6BM791VU8y/XZz/+SVr7h+D+GAALrWI7d6YnEux8BYNtD60kGkEW0uEDC+Ud0mDqTAzUEP2q9IIKisrAQmZLsk17ZMxbhNwlvkwcg76mkbXlA8+V9MvCnqT3x8CdE9eiK8qS27tsCS/DsINkhEtufwD5NwWNDloYa0YfvaoBjwmvdY1fD0ZPIT3EsPoxT3I/V0LxH3PpO3Y+7Hb9wI3O0L4fE87VUO/ZyCUnBt0u3UYydlA6jTuBmqeYTdBm8jfGliWQEfiXrJNayjnw/19/7Puy4VLUzAGgaBv999u7p9LaB3MlW+CiAwBrZU2RKXoB0aZXMtreWTZTMCxf9H4JOTIFsenXvAoxrd25Zdee7OOP3rtWHY8lcpOcuVkNsXdrFvHG9Tgcs9tEZzCarzjnl2nPaJTTLUhqIMEHY2Kl9gZJOMzLMUtJAHdw8PvBV0ukX54NvFVCsaux345DNXzCckU1DGWzI89gS7CUFRfnMeC/nlbyX2roHGakUxMgqWNumq3a0c6P3YHh9HhgFQovOMUKZpGNTMkNL47iLvyMfFyG0Ws4vaexssNpltRf8X1XTt8OS1QbdsTWMUHLSEQ2KaAM2syA8648Dmr+aBljr4BVvx3GHS2E4fxaf4pjDa04b8CWQZP1d0wV+E4t8LLv0d75OT9GYp65+tsH4z3fSVUytgSB0YUb7S/A0tYe6HpA45cUpzCLO79j8bwOgkWPuJ0KRgPFyikdtmU1hW9O0DBvrjwI9nRgbo+gCKbvRQLosCEeJXL5YwZ+FuL1cov18ONL7uMG1/sO6aZYYL+y+P5jrzc4j15+m9NmPJQLtzS5+P5HQyK33Q6fxTz/j/Oj4vu1xvDn1O+a1De+A/NPZYvZIE3fzVD7x551Si+w9W2N8nF0M8uhA1qe1kxPOn086byV/m+lblXN8PB4t3pJYoz59l/2KZvQ5tuXnyatlp62L9rs/7pQdp65AjbN8Eh4LgTr3d2HmjGgf52+ghWq38BDxLZnQ== sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-an-integrations-audit-logs.api.mdx b/docs/api-reference/get-an-integrations-audit-logs.api.mdx index 3aa38f56e..75e02a692 100644 --- a/docs/api-reference/get-an-integrations-audit-logs.api.mdx +++ b/docs/api-reference/get-an-integrations-audit-logs.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzlVt+L20YQ/leWeWkCsmX7EiiiFAIN4ehDQ3J96WGasTSSlpN2ld3Zc1yh/z2MJNu6q85wSfrUF1vW/phvvm/mG7eQkU+dblhbAwnclNorZwOTwqqye68ONii2KidOS8UlKQyZZlXZwiubK1S+oVTnOlXaMBUO5SaljRx06r11rKwr0Oh/+pXlLzsX/9p/3FhVETqjautI4c4Gnt7hI5WWlN4peS+BbzObhpoM98vbFyVz45M4zmzqlwVxYx0vtY13QVfZQsIvvM15j44WKTJWtoj9waSLDBkXbE8vXy4hAsbCQ3IL1xMEsI2gQYc1MTlZbcGnJdUISQt8aAgSMKHekYMIMsoxVAzJerWKoNZG16GGRJ7xy/B8JSsmVBXuKoIkx8pTF4EW5j8HcgeIwGAt11a61tzf+lAeUkNA4b7X4KRNQ041WNDAMETg6HPQjrJToBn0np02BTwBgnVNnrFuZoFkyCQwZJfKna3VvtRSJNNqEYyRlMOn649/qNy6Glldv1Wb1WazWL1abK5u1j8nm9fJq6vl6/X6r08/EH5li791NotdZ2RY53ogcgT6LaEjICPS3kLoWbJ7A9sn8GTaUdqDeAzpNymwWhvyal8Sl+TOLPYq7yiXJrFOYc6yWtKx8ShTJ52+h7wGuTxjPRM0z5/xjFU1Nnt2JHHSvjNQ2AXqthF4SoPTfOgbakfoyAmBjjBL9IP2k92OfGONJy/QN6uVfD1mr+889WHcCV0XQU1c2gwSKEj6qM8ugfh+HU9CxO05zy4WpkHguftjuwdXQQJHp8FGT4wGhNV/bwj+wZ5Jvh9FgSGPY9YnMbDRv9OkVt4ELq0bTRNGiUrCjFyfnja57Y9rFiuB3mjfvL+GCAT8QMx6uRJ5G+u5RiPbx9vfESs0U7l+8hNjfyx5C6k1TIb/3xNiUIrpC8dNhdoIt73+7Vhet3C/7rU6QYQIkget1NO7jaC0nuVA2+7Q05+u6jp5PTiGVF6mvUyJYwdfVOQZQ2E2iTs6TEbOPVZB9vT1/TwY//FIuAB+Oqq+I4HLc+ESecdZ843Bf/gEuIB1OofOcLfyw+nhr8mzCvDFh9HiX6pnzoZZkEdHNIcpviP4STd126nPv3t7AxFgkEac2updb6vjgyQ2e/9jvx2CyafoOHukbQfT7rrT/mHpyROjf59SMZJC130FD+nysQ== sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/get-an-organization-secret.api.mdx b/docs/api-reference/get-an-organization-secret.api.mdx index 2bd290e3c..20921b2dc 100644 --- a/docs/api-reference/get-an-organization-secret.api.mdx +++ b/docs/api-reference/get-an-organization-secret.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzdksGK2zAQhl9FzKkFbZz0aEphoWUpPXRp01MwZWJPYrG25I7GblOjdy9jO8WB9AV6kY30z2j+X98IFcWSXScueMhhX7toOPRCBpsm/IzmEnojwTAJOxrIoIkdle7kShOpZBLjvIrYBD6jd79RW23eHjl7Ny37YBpC9qYNTAaPoZelMpoWPZ6pJT91eQ4s1pQ1lS9GVVKTOVSh7FUwtS1e1SJdzLOsCmXcnEm6wLJxIYsxPPARy0w3Hpb+rzdgQfAcIT/A59V4UFiIVPbs5AL5YYQjIROrjAmrfKmHIhUWmGIXfKQI+Qhvtlv93Kb2nk7YN2K+LEpIyUJLUocKcjiTgIUOpYYcsmGXrYPKlquycf757rGlBDoeD8Rxmq7nBnK4WsfOrZxDsvcEfbzRrPx+LWtqZzNX1yPIpSPIATv3iS5gQaeAHB57qQNfQ7Pg1G1NWBFPHp0/hancSaN6fUHz+PwRLOjwczq7zRaShS5EadGrfOn+RGLQ33CzkAH2NuERyuCFvPyniM7pC/2SrGvQec1retNx4eYAww4srOefGJkxtZCv6FG46xBFq8bxiJG+cZOSbv/oiRX4wsKA7PCor3Yo1rQ+fdiDBez11jUXLxMXy49CeT3yuj9g098DZhJPq2J6t2QcZ+pS+qufj/5ZsQB4VWtcRUrpD66ZrHs= sidebar_class_name: "get api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/invite-a-user-to-your-organization.api.mdx b/docs/api-reference/invite-a-user-to-your-organization.api.mdx index 3beb55511..5565da401 100644 --- a/docs/api-reference/invite-a-user-to-your-organization.api.mdx +++ b/docs/api-reference/invite-a-user-to-your-organization.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzdVkuP2zYQ/ivEtEDbQGvt9qgGDbZBD4seumg2J6+CjKWxxZgiFT7suIb+ezGkZMuPbgPk1ouWoOf5zfcNdw81ucrKzkujoYCnRjphTfAkUCmzdWJngvBGSL2RfCmCI8sXOxOseDTWC2NXqOXfyCFmrxc2/zV+noxQhFaL1lgSuDDBR2eXCWsUuUygroUnbF0mqoaqtWAT35CY16YKLWkfY5Y/Nt53rsjz2lRutiLfGetn0uTOmRu7wCrnz43ZkN1I2uY/zSADjysHxRzec0ooM7D0OZDzv5l6B8UeKqM9ac9H7Dolq5gr/+QYhz24qqEW+eR3HUEBZvGJKg8ZdNZ0ZL0kx78mXOia4TmyJGryKJUTZhnbjFAyvlvU/ghywvAiE7Uo1SSP81bq1dU8HPgHJ6KHwLq25NwxKnpPlk0/zD/88l3+/Pzm+dmV47l8Nb39HvoM4rgmmdFa3F1NHC1PWkLn5Erzaez4UIj01LrLhvo+g8iKr8qosaUDoNHtavoRbW/+O32fuCIt1UyghHvJ11jXknOjepyMZonK0anPyIryLJq3gXoegcWWPBOzmF/h2sIYRahjw0sMyh88Jff9OZBlNLh3KEAbL5eX6DwsxUf2+pjF9oeSxFYqJSxVJDckUA8kiTEGDRwQOtYdW+zLDBxVwUq/i3UvCC1Z7reyhJ6KkLTWR7W5zmiXePPz7S3/OasvFlQLF6qKnFsGpXYs3K8W5mm4t7GEy3CnIjLrKas0o0Y6tFDMGaryfPZmzZvjhbH3fZxwS74xNRTQGeeTxhooIN/c5RGTPKEPDKDdjHMPVkEB43LDTk52G/TZNYPgTmwmE3nHuKQmx7kcG+3kHzRhzH3wjbHDyoaBVQ1hTTbKj7H+67guf/+CbafobN0N++i4h4Y1MR9vyoOOj1d95PDSxOKk56AQH5H7xwfIgKFJ47yb3fLqYTxbjIMfan+4+hBN36BzJUx2/f/pfUuj9fTF551CqRmuSJj9QL85bO4ggyTKbBgdT6VhkhZz2O8X6Oi9VX3P12mtMDFr6XChDsJ/Ac9vXzJX+1jTbrrYNqgCG0XCb9BKrg6KedlnI2257OT1NhV388SBj74Xu4QFljzuq4o6/6JtOdH445/vniCDxfCPRGtq9rG4ZQ3gluvMwESwohzj3R4U6lXAFdummPFFCTypqVDXUajDgbs6WVZjhecKTo3wl9u66rLfpzXQ9wf79NO/egzQjtY8Gn7Q/gEWpYkn sidebar_class_name: "post api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/patch-a-blueprints-permissions.api.mdx b/docs/api-reference/patch-a-blueprints-permissions.api.mdx index 0e12755e7..fdbe22c30 100644 --- a/docs/api-reference/patch-a-blueprints-permissions.api.mdx +++ b/docs/api-reference/patch-a-blueprints-permissions.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzdWN9v2zYQ/lcIviwFHCvZo1EUSLoCK9YHI/OePKOlpLPFhhY5krLrGf7fd0dJtuQ4iQPLQTMEMCjxePzux3en3Jqn4BIrjZc65wM+yqRjVhcemFBKLx1b6YJ5zYzwScZ8BsyAnUvnUN4xPWWCxaoAY2Xu++9jG30IPyPNFAibs7m2qCpGjc2DPZZkkNwzek06x6lOijnkXhCOyUXmvXGDKMLXrj8Db7T1famjuJAqvURI9tLpqV8KC5eJ8ELpWeTA1+tLG4skgh9ibhS4d33e417MHB+M+W0N1vFJj1v4pwDnb3W64oM1T3TuEQQthTFKJgFO9N2Rb9bcIei5oJVfGUBv6fg7JB61G6vROi/B0S6qkPX6aUkLM+k82EOS7cD8BlOZA1tmmmXCtYKA0UksCAxZfTHFxVMkd6F5cHXhwDYRCmvF6sG1XxAeaQvS7ALNl4qJNLXgHHoWbxGeCVtlC6RHg5Ee5s3rncedGd9sMFQg5scjC9JnwWG1guNxBOmz4NDLHNLb1QgNJYH29Z+n7Ju3BXzrtXJiKZViMbAUPL1FBSxeBV8xUmddJk2PWYHkswQ6p+3SBG1ZKi3mIBOobJYTLcmMkAJ99mkBdhUetpeIWMEhQ2NQOp+hGbSJN0kbEEQuELK0M9Z4qciDoZhXkswSathI1alQDnC3MClqP5Upc53K6eonYcpRYF6BKafi6Iopp+J4M0zZN7RjpuRd9ZUUFPw0feUoMK/AllNxdMWWU3G8GbbsG3qOvjJsJXEHHcYZSORUJmxHDybzZ6J1GOlzX5Fnb1AvMeH12lVHqDpuXh2hejPkfNrsl1F1s6XjHajwv1fnbLS14jdLxhdY8Hpc7AZUx1TsBtRbY+Jhq19KxGfa5nPbJGCEFXNyAA1eDkxPKh/3ODroC+Qzn/HBNZ6T5FiDvsGtHDUQsjpWX2VKJk0lftuW4xv0VcoHFIP9PBllwHbiZdxhF3aqGK49zqJZ11KU/g4Dr3KixTeTHneQFFb6VbAlBsw4/LoeTzZhiuQMHi9T99erq4dpgjVKFMqzu0oyJBb6JtNpaWtCxgabBzxaXEdblC5aHzJ+EzVwc0JnF7WjC6tQSz1CE0Y2Jmh80zskULiWTMPcPylqpWW10Tt6GvkHrHZRuinQICv/DenHq0BmIFI8RQbTHO1uN3H7VM7n9idmzf9dqmI6rnNlsi1czVdV2Wi+apGWkqM1QOhWbX5mxK3uc7BDBrrJfKpDcKQnp/IhRpPdDD9jICg1ykS87l9xoqZ2fi7CULOK3TDMdxvD3F9arXS/CDdmpf/jmXGZ5h5++MgogelM3ifyrCuujvniGgV3bMWHwSPFqulNjDcWH08K1utYOPjLqs2GXiM7LNUYXC6ElVTbA6lT6WidVhX2iXBc3FVV8R3rrgI+4oy6EORUBRYCFeMTLu+xLDxStTcTPFcVBTKsFP1Ywr8ckcKdqgdTeCpN27o5vBl9/J3cX43vsQHSISuW1Bvwd8D/xj980Gb7MRner7kS+awQM5IvFYeWVlBQm/XtPtS3akFwD1q8X/hKm+iXyu3BI++RmQyr54eteLnz6IHKZbU0+X+CoP8DQCoraw== sidebar_class_name: "patch api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/patch-a-team.api.mdx b/docs/api-reference/patch-a-team.api.mdx index 34558519d..59a0732b3 100644 --- a/docs/api-reference/patch-a-team.api.mdx +++ b/docs/api-reference/patch-a-team.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzlVlFv4zYM/isCX3YHqHG7R2MY0B0G3GHAVtx6T0EeGIuJdbUtn0QlzQL/94GS07it0909Lw+OYpEU+fH7qBzBUKi87dm6Dkq4r21Q3kUmhU3j9kEdXFTsVI9c1QoVE7Y/BWWI0TZhoZJDhZ1ak4qBjNjG3iCT4ppO5h22pGXfB62wM2py6uKXtS9+TY97pxpC36nWeVK4dpFThKBVVVP1oNKLmtTSuCq21DFKhNW7mrkPZVEYV4XFlrh3nhfWFSG4K7/GqpDHlduR31naF+8XoIFxG6Bcwr0cACsNnr5FCvybMwcoj1C5jqljWWLfN7ZKZxVfgwB1hFDV1KKs+NATlODWX6li0NB715NnS0F2pfSJVWBvuy3oV7iT6mifgFJu84RdBgcGDQm8SSD0Hg+v4vzVkXI+40dXLdpGoTGeQqAgcVMU6RGa1Coez01n5WbubdMogcpbk5tIjzaw7bbJWzU28JiWBsvUhtflDcOLxE4Gy5PF6hICk7dzQKSPhh49tsQJkuVMM055aLASvEeuQY+9yF+z579AP5F/jx0/KeCpcCGL9WSgZB9pWGkIVEVv+ZASWhN68lJvFkPJmWVD4lnoXRcyPX6+vpav57l8ST5GhVhVFMImNs1BKPvdlPy+cG8T1z1M2dYJ16iLLZRLqXg1aJCa/lsA1sz2ZV4Xg4bKk2R7y3Oq2TjfIkMJUtEV25aSNnKBP+LSe7ezRlo0k8IsdSf7l7T4Ug0XECHR5WzgjfWB/7yETINvbPa24ujn9wIjx1mZjnI6s3mZu6ql/SsNaIwVGLC5m5SwwSbQ6NoS185kjVUisqS1EordTZFIXxyl1QOIQvzupNjoGyjhNLext5OxDYOeM4jhmc1Ecn8L8TO2J+Gde9PbP+hwFv9t5Np5+0+SDozzoSYULkg9IqbP55vg90ds+4bOk/xMrJEFl0fadAhtXMrJssSCO+dZ3d59Ag2CSDa/WVynRrrALXaTE+8md+/LuTW5p/5Xl3duLtMjF32Dtkuy9ElVmYBL2N1AnlEBNJQJy5WG2gWW3eNxjYG++GYY5PW3SF5G90rDDr3FtfRpeQRjg6zNSPo30H/3eRTRe/WDd8lsMc8G7w6bKL9AwwMdTlfYIEN4pK7kmrc+5Iyu7iXA2fXVhSEiyx63VUU9v2m7mgj97vb+w0fQsB7/KLXOiJPHvdyLuM95ugRR0mR6d4QGu23ErdjmoCI3jNKsqVofklrHhZQ1i8RLGedK5Cl1zbocj3kWDMOTfd666DFie7KWxqyGYfgXGLnbiQ== sidebar_class_name: "patch api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/patch-a-user.api.mdx b/docs/api-reference/patch-a-user.api.mdx index 396db455d..4e53ea890 100644 --- a/docs/api-reference/patch-a-user.api.mdx +++ b/docs/api-reference/patch-a-user.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzlVt9v4zYM/lcEvuwOUON2j8YwIHcYsMOAobi1T0EwMBYT62pbPolKLwv8vw+U8sNt3ay713txFIkUyY8fSe3BUKi87dm6Dkq4q21Q3kUmhU3jHoPauajYqR65qhWqGMj/FJQhRtuEmUoKFXZqRXJmRDb2BpkU13QU966hIijsjGLCtgizX1a++DV97pxqCH2nWudJ4cpFTmpBJ7WgT2pBq6qm6kGJiNy+MK6KLXWM4v7yXc3ch7IojKvCbEPcO88z64oQ3JVfYVXI58ptyW8tPRbvZ6CBcROgXMC9mISlBk9fIwX+4MwOyj1UrmPqWJbY942tkq3iSxC89hCqmlqUFe96ghLc6gtVDBp673rybCnIaQplJIbe4w70C/gpB51gf8SOBU8MwW46WR0hzfCBhtZ2n5jaAOWNBptXJxuBve02MAwaEnxvMt9hS0G5dbKV1CZ9OTii2J18edX8oAGNsWIEm9sRLGtsAg1JoEePLbHkoFxMwHq8TIMVT3vkGjSIs1CCePI3tWibyZDSiUJjPIVTaMn7cWSJ4adghAXWk4GSfaRhqSFQFb3lXfJvRejJC28y2cuY6TMkAoXedSGn++fra/l56tR90jEqxKqiENaxaXbCxTdz7Sm33MM4s53klbrYQrkQ35eDhozNFJpr6wP/mWCcOG3wwmFvK45++iwwcpwigwZrJrfzxpQZ77bWJGK8oO8FxleeBOM5vzzWsHa+RYYSJA9XbFsSSzmV/0vF+c1b/HqlKUxCMYzJtxCZ5aUKvgDBaz3njd5104l/5l+SWqYafhvJx8ruQTrufzSHQUNLXDuT676Swk/1X0KxvSlS5RX7cw8YQIrVb4+9JPoGSjjOBuztaDTAoKcEYngiM6r+v6QGMz7HHnDGt7d/0O7cluaRa+ftP6mK4dC5akJDPsEodf35PG1++4Zt39BoWiyOoC9P+T9vpVa4dsm+ZdGDW+dZzW8/gQaJPufhZnadysgFbrE7JxZuRyP9ed8czb0f8U2Q88n0jYu+Qdul7uBTB83MW8D2BjTkrq+hHE2gpYbaBRaZ/X6Fge59Mwyy/TWSl/Gx1LBFb3ElSVvswdgga3Pg/IVUvPt8KJ736nsH22RsT2bHFpso/0DDA+2ejtdBaHegsLieBT5mB6/u5JrzBS9mmBRb1phXFfV8UXY5Kvvb+d3H30HD6vAoa50RJY+P0lDwMXvrEmL5uSV7e2iw20TciGy+NL1FomRwXLUPqWoPCwlrEo/n5Zwjka/ENamy3+eeMAwn+Xz0qsYB26O0pEea679xwgQy sidebar_class_name: "patch api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/patch-an-action-run.api.mdx b/docs/api-reference/patch-an-action-run.api.mdx index b52bde3f6..24e0c9318 100644 --- a/docs/api-reference/patch-an-action-run.api.mdx +++ b/docs/api-reference/patch-an-action-run.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "patch api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/patch-an-entity.api.mdx b/docs/api-reference/patch-an-entity.api.mdx index 421310b0c..8443596aa 100644 --- a/docs/api-reference/patch-an-entity.api.mdx +++ b/docs/api-reference/patch-an-entity.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "patch api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/patch-an-integration.api.mdx b/docs/api-reference/patch-an-integration.api.mdx index 065a8bbf0..6dccff7de 100644 --- a/docs/api-reference/patch-an-integration.api.mdx +++ b/docs/api-reference/patch-an-integration.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "patch api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/patch-an-organization-secret.api.mdx b/docs/api-reference/patch-an-organization-secret.api.mdx index 1b1ffd343..0f1d7e76d 100644 --- a/docs/api-reference/patch-an-organization-secret.api.mdx +++ b/docs/api-reference/patch-an-organization-secret.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJzVVV1v2zoM/SsCnzZAjdM9GsMFug9gwwYs6HrvSxAMjM3GWm1Jk+ikmeH/fkHZSb00GbDHvSSKdETxkOcwHZQUi2A8G2chh7vKRBVcy6Swrt0uqr1rFTvlkYtKoVUubNCanygXVKQiEM9er0P2T/q4c6omDFY1LpDCtWt5BEXVoMUNNWRZq6Ki4kHJKVeklqUrWjlIUVcvKmYf8ywrXRFnG2LvAs+My2J0V2GNRSYbV2PclzPQwLiJkC/hyyQ7WGkI9KOlyG9cuYe8g8JZJsuyRO9rUyRg9j0K+Q5iUVGDsuK9J8jBrb9TwaDBB+cpsKGYcOnl/7BuaQKOHIzdgH5WUlKWdmorcOXuE+Np4aA/ufI8YoOPn8luuIL81Xx+6YXJ7vl3eg1YlkYAWC8mlO6xjjRUywQqIV+u+l7gHgM2xBSkumcKNGbYazCSiUeuQIPFJh2mx7+lX9PgHFo6ywGbkwIl9e3Q8lGCByorLeHbYHifMlsTBgoigdaXyJSP6oBVn2QQvbNx6N6r+Vy+fn3/Hd1jW7O6HZGpWA1x5cqBVyHEEr8csu11NvVBNj6WdRPKPUiKYXuoXRtqyOEgbfRmomzo9TlAG3/BTDh/lUYMdA7Mjz1Bbz7R/qkNNy1XLhxMMXaqIiwpJJai/tsnn7x/xMbX9Eznl/Q9lcC9S3kYlvuwcIHVzeIjaJAqDPDr2Vyw3kVuMIl9THPxmwlz+ujEyX/vyBq6xfTIma/RWClL0kA36mwJ22vQME0/aWoQtoZ8arCVhspFlltdt8ZI/4a672X7R0tBTLLSsMVgcC3NWXZQmijr8mj/iyV+cTt696X6Q59eoHlQqhWZbkd9gYYH2p/MjX7V64NYJekB8XZI7epO4jxFeDbTxTJHEy9u7t5+AA3r8c+gcaVcCriT6YS7IQWX+Cdnpb0OarSbFjeCHYKmOdpKh6aee0ieGxeS6lmSp2Yc+MinjICzV7pucHTfH/HD0cUbY70OaKm5zPP/AQxdwVo= sidebar_class_name: "patch api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/rotate-secret.api.mdx b/docs/api-reference/rotate-secret.api.mdx index a4ad63346..98f36138c 100644 --- a/docs/api-reference/rotate-secret.api.mdx +++ b/docs/api-reference/rotate-secret.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJy9VEtv2zAM/isCTxugxu2OxjAgx6GHBm13CgJUsZlYrW2pFJ0uM/TfB1pu6rTeYcCwSx4WKX8vsocSQ0HWs3Ut5HBf2aDIdYzK1LV7CeroOsVOkWPDqLhCFbAgZOV2yqiQfhSEJbZsTR2UbaWH1MoRK0d709pfRq5ffN1S9g00sNkHyNew9D7ARoM3ZBpkJHnaQygqbAzkPfDRI+QQmGy7h6jBCkZvuAINrWnk0JagP5BA9WDLB0EmgKfoBLBQejEtz/PaOTohJXzuLGEJOVOHcaMhYNGR5eOAdIuGkIRK50vDmJuBkdQRBu/agEF4fLm8lK9zlHfpdQlAqUJXFBjCrqvr4wI0FK5lbFn6jPe1LQYNs8cgzVORPDmPxDa9yj1NhDPtETRg2zWQr4XBJmq5bVLito9YMOh31yRxZxzA1mxrEeR0tnWuRtMO9pSzPQWhUFzyx1MNO0eNYchBBLxg26C0JD3/qiXZNwMgxjh1ci0abTSYsrQiqalXE+o7Uwd8H6ib6+GWqKFBrlwpIXRhUE2ymEN2uMrE+6y3ZcySpRcjIEFGh9dwd1RDDhWzD3mWGW8Xe2TviBfWQdRzBV04q5mE8E5CkAx7jeKb995e4/FtTpYdV47GUYRxlCo0JRLEYbR2bmi3XEv9ML7L1XfQIOCTEFeLS5FayDemfQsK3KYxOlE+069/C/N/WjBJAsafnPna2CGcg7D96NgaDlcwzEIADfmwRM5t22ioxON8DX2/NQF/UB2jPH7ukGT+NxoOhqzMw2BtacM4G3Mhmorw6XZM42f173bVLOmzRXAwdSf/QMMTHtPujLISxhgIiXSwLAr0PGn5sIIkhqdhWN3c3YuanUg7TeDTkMDxh1w/i+d9NBMG+ZSBmG3p+5TvGE/16eiPHSPHE3WhEGP8DZfOZks= sidebar_class_name: "post api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/update-an-action-automation.api.mdx b/docs/api-reference/update-an-action-automation.api.mdx index ab0f248b3..0f643fcce 100644 --- a/docs/api-reference/update-an-action-automation.api.mdx +++ b/docs/api-reference/update-an-action-automation.api.mdx @@ -5,24 +5,19 @@ description: "This route allows you to update an existing self-service action or sidebar_label: "Update an action/automation" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "put api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; @@ -50,9292 +46,26 @@ This route allows you to update an existing self-service action or automation in > -
","name":"action_identifier","required":true}]} +> + + + +","type":"string","pattern":"^[A-Za-z0-9@_.+:\\\\/=-]+$"},"title":{"description":"The new title of the action/automation.
","type":"string"},"icon":{"description":"The new icon of the action/automation.
","type":"string"},"description":{"description":"The new description of the action/automation.
","type":"string"},"trigger":{"oneOf":[{"type":"object","description":"The trigger definition of the new action.
","title":"Self-service (DAY-2/DELETE)","properties":{"operation":{"type":"string","description":"The [operation type](https://docs.getport.io/create-self-service-experiences/setup-ui-for-action/#basic-details) of the action.
","enum":["DAY-2","DELETE"]},"type":{"type":"string","enum":["self-service"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint that the action is associated with.
Note that this is optional, as actions do not have to be tied directly to a blueprint.
"},"userInputs":{"oneOf":[{"type":"object","title":"Default order","description":"Use this option when you don't want to define a custom order/steps for the user inputs.
","properties":{"properties":{"type":"object","propertyNames":{"pattern":"^[A-Za-z0-9@_=\\\\-]+$"},"additionalProperties":{"type":"object","properties":{"type":{"enum":["string","number","boolean","object","array"]},"format":{"enum":["date-time","url","email","ipv4","ipv6","yaml","entity","user","team","proto","markdown"]},"blueprint":{"type":"string","description":"When using the `entity` format, this is the identifier of the blueprint whose entities will be selectable via this input.
"},"dependsOn":{"type":"array","description":"The identifiers of the inputs that this input depends on. This input will be disabled until they have been given a value.
","items":{"type":"string"}},"visible":{"description":"The visibility of the input. Resolves to a boolean value (`true` = visible).
","oneOf":[{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A [jq query](https://stedolan.github.io/jq/manual/) that resolves to `true` or `false`, determining the visibility of the input.
"}},"required":["jqQuery"],"additionalProperties":false},{"type":"boolean","title":"boolean","description":"A boolean value determining the visibility of the input.
"}]},"icon":{"type":"string","description":"The icon of the input.
"},"dataset":{"type":"object","properties":{"combinator":{"type":"string","description":"The combinator to use when calculating the rules.
","enum":["and","or"]},"rules":{"type":"array","minItems":1,"items":{"anyOf":[{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"oneOf":[{"anyOf":[{"type":"number","title":"number"},{"type":"string","title":"string","format":"date-time"}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a number.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"anyOf":[{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}]},{"type":"object","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false}]},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"},"items":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"]}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!=","contains"]},"value":{"anyOf":[{"type":"null"},{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"object","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}}},"required":["combinator","rules"]},"sort":{"type":"object","description":"Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
This input allows you to sort the entities in the dropdown by a specific property.
","properties":{"property":{"type":"string","description":"The property by which to sort the entities.
"},"order":{"type":"string","enum":["ASC","DESC"]}},"required":["property","order"]}},"required":["type"]}},"required":{"description":"The action's user inputs that must be provided by the executed user.
","oneOf":[{"type":"object","title":"jqQuery","description":"A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"array","title":"array","description":"The identifiers of the required inputs.
","items":{"type":"string"}}]}},"required":["properties"],"additionalProperties":false},{"type":"object","title":"Custom order","description":"Use this option when you want to define a custom order for the user inputs.
","properties":{"properties":{"type":"object","propertyNames":{"pattern":"^[A-Za-z0-9@_=\\\\-]+$"},"additionalProperties":{"type":"object","properties":{"type":{"enum":["string","number","boolean","object","array"]},"format":{"enum":["date-time","url","email","ipv4","ipv6","yaml","entity","user","team","proto","markdown"]},"blueprint":{"type":"string","description":"When using the `entity` format, this is the identifier of the blueprint whose entities will be selectable via this input.
"},"dependsOn":{"type":"array","description":"The identifiers of the inputs that this input depends on. This input will be disabled until they have been given a value.
","items":{"type":"string"}},"visible":{"description":"The visibility of the input. Resolves to a boolean value (`true` = visible).
","oneOf":[{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"boolean","title":"boolean","description":"A boolean value determining the visibility of the input.
"}]},"icon":{"type":"string","description":"The icon of the input.
"},"dataset":{"type":"object","properties":{"combinator":{"type":"string","description":"The combinator to use when calculating the rules.
","enum":["and","or"]},"rules":{"type":"array","minItems":1,"items":{"anyOf":[{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"oneOf":[{"anyOf":[{"type":"number","title":"number"},{"type":"string","title":"date-time","format":"date-time"}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","title":"Relation Rule","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"anyOf":[{"anyOf":[{"type":"string","title":"string"},{"type":"array","title":"array","items":{"type":"string"}}]},{"type":"object","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean","description":"Determines whether the relation is required or not.
"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","title":"Schema Rule","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"},"items":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"]}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!=","contains"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}}},"required":["combinator","rules"]},"sort":{"type":"object","description":"Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
This input allows you to sort the entities in the dropdown by a specific property.
","properties":{"property":{"type":"string","description":"The property by which to sort the entities.
"},"order":{"type":"string","enum":["ASC","DESC"]}},"required":["property","order"]}},"required":["type"]}},"required":{"description":"The action's user inputs that must be provided by the executed user.
","oneOf":[{"type":"object","title":"jqQuery","description":"A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"array","title":"array","description":"The identifiers of the required inputs.
","items":{"type":"string"}}]},"order":{"type":"array","description":"The order of the user inputs - an array of the inputs' identifiers.
","items":{"type":"string"}}},"required":["properties","order"],"additionalProperties":false},{"type":"object","title":"Custom steps","description":"Use this option when you want to define custom steps for the user inputs.
","properties":{"properties":{"type":"object","propertyNames":{"pattern":"^[A-Za-z0-9@_=\\\\-]+$"},"additionalProperties":{"type":"object","properties":{"type":{"enum":["string","number","boolean","object","array"]},"format":{"enum":["date-time","url","email","ipv4","ipv6","yaml","entity","user","team","proto","markdown"]},"blueprint":{"type":"string","description":"When using the `entity` format, this is the identifier of the blueprint whose entities will be selectable via this input.
"},"dependsOn":{"type":"array","description":"The identifiers of the inputs that this input depends on. This input will be disabled until they have been given a value.
","items":{"type":"string"}},"visible":{"description":"The visibility of the input. Resolves to a boolean value (`true` = visible).
","oneOf":[{"type":"object","title":"jqQuery","properties":{"jqQuery":{"description":"A [jq query](https://stedolan.github.io/jq/manual/) that resolves to `true` or `false`, determining the visibility of the input.
","type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"boolean","title":"boolean","description":"A boolean value determining the visibility of the input.
"}]},"icon":{"type":"string","description":"The icon of the input.
"},"dataset":{"type":"object","properties":{"combinator":{"type":"string","description":"The combinator to use when calculating the rules.
","enum":["and","or"]},"rules":{"type":"array","minItems":1,"items":{"anyOf":[{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"oneOf":[{"anyOf":[{"type":"number","title":"number"},{"type":"string","title":"date-time","format":"date-time"}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a number.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","title":"Relation Rule","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"anyOf":[{"anyOf":[{"type":"string","title":"string"},{"type":"array","title":"array","items":{"type":"string"}}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean","description":"Determines whether the relation is required or not.
"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","title":"Schema Rule","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"},"items":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"]}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!=","contains"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}}},"required":["combinator","rules"]},"sort":{"type":"object","properties":{"property":{"type":"string"},"order":{"type":"string","enum":["ASC","DESC"]}},"required":["property","order"]}},"required":["type"]}},"required":{"description":"The action's user inputs that must be provided by the executed user.
","oneOf":[{"type":"object","title":"jqQuery","description":"A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"array","title":"array","description":"The identifiers of the required inputs.
","items":{"type":"string"}}]},"steps":{"type":"array","description":"The steps of the user inputs. Each step is an object containing its title and the order of its properties.
","items":{"type":"object","properties":{"title":{"type":"string","description":"The title of the step.
"},"order":{"type":"array","description":"The order of the properties in the step - an array of property identifiers.
","items":{"type":"string"}}},"required":["title"],"additionalProperties":false}}},"required":["properties","steps"],"additionalProperties":false}],"type":"object","description":"The [user inputs](https://docs.getport.io/create-self-service-experiences/setup-ui-for-action/user-inputs/) of the action.
","additionalProperties":false,"required":["properties"]},"condition":{"type":"object","description":"Filters used to include/exclude specific entities from the action.","additionalProperties":false,"properties":{"type":{"type":"string","enum":["SEARCH"]},"rules":{"type":"array","description":"The [rules](https://docs.getport.io/search-and-query/#rules) used to filter entities.
","items":{"anyOf":[{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"type":["number"]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Relation Rule","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"type":"string"},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","title":"Schema Rule","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!="]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}},"combinator":{"type":"string","enum":["and","or"]}},"required":["type","rules","combinator"]}},"dependencies":{"condition":["blueprintIdentifier"]},"required":["type","userInputs","operation"],"additionalProperties":false},{"type":"object","description":"The trigger definition of the new action.
","title":"Self-service (CREATE)","properties":{"operation":{"type":"string","description":"The [operation type](https://docs.getport.io/create-self-service-experiences/setup-ui-for-action/#basic-details) of the action.
","enum":["CREATE"]},"type":{"type":"string","enum":["self-service"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint that the action is associated with.
Note that this is optional, as actions do not have to be tied directly to a blueprint.
"},"userInputs":{"oneOf":[{"type":"object","title":"Default order","description":"Use this option when you don't want to define a custom order/steps for the user inputs.
","properties":{"properties":{"type":"object","propertyNames":{"pattern":"^[A-Za-z0-9@_=\\\\-]+$"},"additionalProperties":{"type":"object","properties":{"type":{"enum":["string","number","boolean","object","array"]},"format":{"enum":["date-time","url","email","ipv4","ipv6","yaml","entity","user","team","proto","markdown"]},"blueprint":{"type":"string","description":"When using the `entity` format, this is the identifier of the blueprint whose entities will be selectable via this input.
"},"dependsOn":{"type":"array","description":"The identifiers of the inputs that this input depends on. This input will be disabled until they have been given a value.
","items":{"type":"string"}},"visible":{"description":"The visibility of the input. Resolves to a boolean value (`true` = visible).
","oneOf":[{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A [jq query](https://stedolan.github.io/jq/manual/) that resolves to `true` or `false`, determining the visibility of the input.
"}},"required":["jqQuery"],"additionalProperties":false},{"type":"boolean","title":"boolean","description":"A boolean value determining the visibility of the input.
"}]},"icon":{"type":"string","description":"The icon of the input.
"},"dataset":{"type":"object","properties":{"combinator":{"type":"string","description":"The combinator to use when calculating the rules.
","enum":["and","or"]},"rules":{"type":"array","minItems":1,"items":{"anyOf":[{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"oneOf":[{"anyOf":[{"type":"number","title":"number"},{"type":"string","title":"string","format":"date-time"}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a number.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"anyOf":[{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}]},{"type":"object","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false}]},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"},"items":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"]}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!=","contains"]},"value":{"anyOf":[{"type":"null"},{"type":"string"},{"type":"number"},{"type":"boolean"},{"type":"object","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}}},"required":["combinator","rules"]},"sort":{"type":"object","description":"Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
This input allows you to sort the entities in the dropdown by a specific property.
","properties":{"property":{"type":"string","description":"The property by which to sort the entities.
"},"order":{"type":"string","enum":["ASC","DESC"]}},"required":["property","order"]}},"required":["type"]}},"required":{"description":"The action's user inputs that must be provided by the executed user.
","oneOf":[{"type":"object","title":"jqQuery","description":"A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"array","title":"array","description":"The identifiers of the required inputs.
","items":{"type":"string"}}]}},"required":["properties"],"additionalProperties":false},{"type":"object","title":"Custom order","description":"Use this option when you want to define a custom order for the user inputs.
","properties":{"properties":{"type":"object","propertyNames":{"pattern":"^[A-Za-z0-9@_=\\\\-]+$"},"additionalProperties":{"type":"object","properties":{"type":{"enum":["string","number","boolean","object","array"]},"format":{"enum":["date-time","url","email","ipv4","ipv6","yaml","entity","user","team","proto","markdown"]},"blueprint":{"type":"string","description":"When using the `entity` format, this is the identifier of the blueprint whose entities will be selectable via this input.
"},"dependsOn":{"type":"array","description":"The identifiers of the inputs that this input depends on. This input will be disabled until they have been given a value.
","items":{"type":"string"}},"visible":{"description":"The visibility of the input. Resolves to a boolean value (`true` = visible).
","oneOf":[{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"boolean","title":"boolean","description":"A boolean value determining the visibility of the input.
"}]},"icon":{"type":"string","description":"The icon of the input.
"},"dataset":{"type":"object","properties":{"combinator":{"type":"string","description":"The combinator to use when calculating the rules.
","enum":["and","or"]},"rules":{"type":"array","minItems":1,"items":{"anyOf":[{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"oneOf":[{"anyOf":[{"type":"number","title":"number"},{"type":"string","title":"date-time","format":"date-time"}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","title":"Relation Rule","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"anyOf":[{"anyOf":[{"type":"string","title":"string"},{"type":"array","title":"array","items":{"type":"string"}}]},{"type":"object","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean","description":"Determines whether the relation is required or not.
"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","title":"Schema Rule","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"},"items":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"]}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!=","contains"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}}},"required":["combinator","rules"]},"sort":{"type":"object","description":"Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
This input allows you to sort the entities in the dropdown by a specific property.
","properties":{"property":{"type":"string","description":"The property by which to sort the entities.
"},"order":{"type":"string","enum":["ASC","DESC"]}},"required":["property","order"]}},"required":["type"]}},"required":{"description":"The action's user inputs that must be provided by the executed user.
","oneOf":[{"type":"object","title":"jqQuery","description":"A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"array","title":"array","description":"The identifiers of the required inputs.
","items":{"type":"string"}}]},"order":{"type":"array","description":"The order of the user inputs - an array of the inputs' identifiers.
","items":{"type":"string"}}},"required":["properties","order"],"additionalProperties":false},{"type":"object","title":"Custom steps","description":"Use this option when you want to define custom steps for the user inputs.
","properties":{"properties":{"type":"object","propertyNames":{"pattern":"^[A-Za-z0-9@_=\\\\-]+$"},"additionalProperties":{"type":"object","properties":{"type":{"enum":["string","number","boolean","object","array"]},"format":{"enum":["date-time","url","email","ipv4","ipv6","yaml","entity","user","team","proto","markdown"]},"blueprint":{"type":"string","description":"When using the `entity` format, this is the identifier of the blueprint whose entities will be selectable via this input.
"},"dependsOn":{"type":"array","description":"The identifiers of the inputs that this input depends on. This input will be disabled until they have been given a value.
","items":{"type":"string"}},"visible":{"description":"The visibility of the input. Resolves to a boolean value (`true` = visible).
","oneOf":[{"type":"object","title":"jqQuery","properties":{"jqQuery":{"description":"A [jq query](https://stedolan.github.io/jq/manual/) that resolves to `true` or `false`, determining the visibility of the input.
","type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"boolean","title":"boolean","description":"A boolean value determining the visibility of the input.
"}]},"icon":{"type":"string","description":"The icon of the input.
"},"dataset":{"type":"object","properties":{"combinator":{"type":"string","description":"The combinator to use when calculating the rules.
","enum":["and","or"]},"rules":{"type":"array","minItems":1,"items":{"anyOf":[{"type":"object","title":"Empty Rule","properties":{"operator":{"enum":["isEmpty","isNotEmpty"]},"property":{"type":"string"}},"required":["operator","property"],"additionalProperties":false},{"type":"object","title":"Date Rule","properties":{"property":{"type":"string"},"operator":{"enum":["between","notBetween","="]},"value":{"type":"object","oneOf":[{"type":"object","title":"Date Range","properties":{"from":{"type":"string","format":"date-time"},"to":{"type":"string","format":"date-time"}},"required":["from","to"]},{"type":"object","title":"Preset","properties":{"preset":{"type":"string","enum":["today","tomorrow","yesterday","lastWeek","last2Weeks","lastMonth","last3Months","last6Months","last12Months"]}},"required":["preset"]}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"Number Rule","properties":{"property":{"type":"string"},"operator":{"enum":[">",">=","<","<="]},"value":{"oneOf":[{"anyOf":[{"type":"number","title":"number"},{"type":"string","title":"date-time","format":"date-time"}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a number.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["property","operator","value"],"additionalProperties":false},{"type":"object","title":"String Rule","properties":{"property":{"type":"string"},"operator":{"enum":["=","!=","containsAny","contains","doesNotContains","beginsWith","doesNotBeginsWith","endsWith","doesNotEndsWith","in","notIn"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"string","title":"date-time","format":"date-time"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"additionalProperties":false,"required":["property","operator","value"]},{"type":"object","title":"Relation Rule","properties":{"operator":{"enum":["relatedTo"]},"blueprint":{"type":"string"},"value":{"anyOf":[{"anyOf":[{"type":"string","title":"string"},{"type":"array","title":"array","items":{"type":"string"}}]},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]},"direction":{"enum":["upstream","downstream"]},"required":{"type":"boolean","description":"Determines whether the relation is required or not.
"}},"additionalProperties":false,"required":["operator","value","blueprint"]},{"type":"object","title":"Schema Rule","properties":{"propertySchema":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"},"items":{"type":"object","properties":{"type":{"type":"string"},"format":{"type":"string"}},"required":["type"]}},"required":["type"],"additionalProperties":false},"operator":{"enum":["=","!=","contains"]},"value":{"anyOf":[{"type":"null"},{"type":"string","title":"string"},{"type":"number","title":"number"},{"type":"boolean","title":"boolean"},{"type":"object","title":"jqQuery","properties":{"jqQuery":{"type":"string","description":"A jq query that resolves to a string.
"}},"required":["jqQuery"],"additionalProperties":false}]}},"required":["operator","propertySchema"],"additionalProperties":false}]}}},"required":["combinator","rules"]},"sort":{"type":"object","properties":{"property":{"type":"string"},"order":{"type":"string","enum":["ASC","DESC"]}},"required":["property","order"]}},"required":["type"]}},"required":{"description":"The action's user inputs that must be provided by the executed user.
","oneOf":[{"type":"object","title":"jqQuery","description":"A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
","properties":{"jqQuery":{"type":"string"}},"required":["jqQuery"],"additionalProperties":false},{"type":"array","title":"array","description":"The identifiers of the required inputs.
","items":{"type":"string"}}]},"steps":{"type":"array","description":"The steps of the user inputs. Each step is an object containing its title and the order of its properties.
","items":{"type":"object","properties":{"title":{"type":"string","description":"The title of the step.
"},"order":{"type":"array","description":"The order of the properties in the step - an array of property identifiers.
","items":{"type":"string"}}},"required":["title"],"additionalProperties":false}}},"required":["properties","steps"],"additionalProperties":false}],"type":"object","description":"The [user inputs](https://docs.getport.io/create-self-service-experiences/setup-ui-for-action/user-inputs/) of the action.
","additionalProperties":false,"required":["properties"]}},"required":["type","userInputs","operation"],"additionalProperties":false},{"type":"object","description":"The trigger definition of the new action.
","title":"Automation","properties":{"type":{"type":"string","enum":["automation"]},"event":{"description":"The [event](https://docs.getport.io/actions-and-automations/define-automations/setup-trigger) that triggers the action.
","oneOf":[{"type":"object","title":"Entity created","properties":{"type":{"type":"string","enum":["ENTITY_CREATED"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint whose entities will trigger the automation.
"}},"required":["type","blueprintIdentifier"],"additionalProperties":false},{"type":"object","title":"Entity updated","properties":{"type":{"type":"string","enum":["ENTITY_UPDATED"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint whose entities will trigger the automation.
"}},"required":["type","blueprintIdentifier"],"additionalProperties":false},{"type":"object","title":"Entity deleted","properties":{"type":{"type":"string","enum":["ENTITY_DELETED"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint whose entities will trigger the automation.
"}},"required":["type","blueprintIdentifier"],"additionalProperties":false},{"type":"object","title":"Timer property expired","properties":{"type":{"type":"string","enum":["TIMER_PROPERTY_EXPIRED"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint whose entities will trigger the automation.
"},"propertyIdentifier":{"type":"string","description":"The identifier of the timer property in the specified blueprint.
"}},"required":["type","blueprintIdentifier","propertyIdentifier"],"additionalProperties":false},{"type":"object","title":"Any entity change","properties":{"type":{"type":"string","enum":["ANY_ENTITY_CHANGE"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint whose entities will trigger the automation.
"}},"required":["type","blueprintIdentifier"],"additionalProperties":false}]},"condition":{"description":"Filters used to include/exclude specific entities from the automation.","oneOf":[{"type":"object","title":"JQ","properties":{"type":{"type":"string","enum":["JQ"]},"expressions":{"type":"array","description":"An array of [jq expressions](https://docs.getport.io/search-and-query/#jq-expressions) used to filter entities.
Read more [here](https://docs.getport.io/actions-and-automations/define-automations/setup-trigger#conditions).
","items":{"type":"string"}},"combinator":{"type":"string","enum":["and","or"]}},"required":["type","expressions"],"additionalProperties":false}]}},"required":["type","event"],"additionalProperties":false}]},"invocationMethod":{"description":"Details the action's backend type and details.
","oneOf":[{"type":"object","title":"Kafka","properties":{"type":{"type":"string","enum":["KAFKA"]},"payload":{"description":"An object containing the [action payload](https://docs.getport.io/create-self-service-experiences/setup-backend/#define-the-actions-payload).
","type":"object"}},"required":["type"],"additionalProperties":false},{"type":"object","title":"Webhook","properties":{"type":{"type":"string","enum":["WEBHOOK"]},"url":{"type":"string","description":"The URL of the webhook.
"},"agent":{"type":"boolean","description":"If `true`, Port's [execution agent](https://docs.getport.io/create-self-service-experiences/setup-backend/webhook/port-execution-agent/) will be used to handle invocations of this action.
"},"synchronized":{"type":"boolean","description":"If `true`, the action will be executed [synchronously](https://docs.getport.io/create-self-service-experiences/setup-backend/webhook/#sync-vs-async-execution).
"},"method":{"type":"string","description":"The HTTP method of the webhook (`POST`, `PUT`, `PATCH`, or `DELETE`).
"},"headers":{"type":"object","description":"A JSON object containing the headers to be sent to the webhook in each execution, in `\"key\"`:`\"value\"` pairs.
"},"body":{"type":"object","description":"The body sent to the webhook in each execution. This is where the [action payload](https://docs.getport.io/create-self-service-experiences/setup-backend/#define-the-actions-payload) is specified.
"}},"required":["type","url"],"additionalProperties":false},{"type":"object","title":"GitHub","properties":{"type":{"type":"string","enum":["GITHUB"]},"org":{"type":"string","description":"The Github organization in which the workflow is located.
"},"repo":{"type":"string","description":"The Github repository in which the workflow is located.
"},"workflow":{"type":"string","description":"The name of the workflow (YAML file) to trigger. The file should be placed under `.github/workflows/`.
"},"workflowInputs":{"type":"object","description":"The [action payload](https://docs.getport.io/create-self-service-experiences/setup-backend/#define-the-actions-payload) to be sent to Github upon execution.
"},"reportWorkflowStatus":{"type":"boolean","description":"If `true`, the action run will update its status automatically based on the workflow's result (pass/fail).
"}},"required":["type","org","repo","workflow"],"additionalProperties":false},{"type":"object","title":"GitLab","properties":{"type":{"type":"string","enum":["GITLAB"]},"projectName":{"type":"string","description":"The GitLab project in which the pipeline is located.
"},"groupName":{"type":"string","description":"The GitLab group in which the project is located.
"},"defaultRef":{"type":"string","description":"The default ref (branch/tag name) we want the action to use. Default ref can be overridden dynamically by adding \"ref\" as a user input. If not set, the agent triggers the `main` branch."},"pipelineVariables":{"type":"object","description":"The [action payload](https://docs.getport.io/create-self-service-experiences/setup-backend/#define-the-actions-payload) to be sent to GitLab upon execution.
"}},"required":["type","projectName","groupName"],"additionalProperties":false},{"type":"object","title":"Azure DevOps","properties":{"type":{"type":"string","enum":["AZURE_DEVOPS"]},"webhook":{"type":"string","description":"The name of the webhook resource in the Azure YAML pipeline file.
"},"org":{"type":"string","description":"The Azure DevOps organization in which the pipeline is located.
"},"payload":{"type":"object","description":"The [action payload](https://docs.getport.io/create-self-service-experiences/setup-backend/#define-the-actions-payload) to be sent to Azure DevOps upon execution.
"}},"required":["type","webhook","org"],"additionalProperties":false},{"type":"object","title":"Upsert Entity","properties":{"type":{"type":"string","enum":["UPSERT_ENTITY"]},"blueprintIdentifier":{"type":"string","description":"The identifier of the blueprint whose entity will be upserted.
"},"mapping":{"type":"object","description":"An object containing the entity's properties and their new values.
","properties":{"identifier":{"type":"string","description":"The identifier of the upserted entity.
"},"title":{"type":"string","description":"The title of the upserted entity.
"},"team":{"description":"The team/s the entity belongs to.
","oneOf":[{"type":"string","title":"string"},{"type":"array","title":"array","items":{"type":"string"}}]},"icon":{"type":"string","description":"The icon of the upserted entity.
"},"properties":{"type":"object","description":"The properties of the upserted entity, in `\"key\"`:`\"value\"` pairs.
"},"relations":{"type":"object","description":"The relations of the upserted entity, in `\"key\"`:`\"value\"` pairs, where the key is the relation's identifier and the value is the related entity's identifier.
","additionalProperties":{"type":"object","oneOf":[{"type":"string","title":"string"},{"type":"array","title":"array","items":{"type":"string"}},{"type":"null"}]}}},"required":["identifier"]}},"required":["type","blueprintIdentifier","mapping"],"additionalProperties":false}]},"requiredApproval":{"description":"Determines whether the action requires approval before execution.
Choose `ALL` to require all specified users to approve the action, or `ANY` to require only one.
","oneOf":[{"type":"object","title":"User/s","properties":{"type":{"type":"string","enum":["ANY","ALL"]}},"required":["type"],"additionalProperties":false},{"type":"boolean","title":"boolean"}]},"approvalNotification":{"type":"object","description":"The notification configuration for the approval process. Relevant only if `requiredApproval` is set to `true`.
","properties":{"type":{"type":"string","enum":["webhook","email"],"default":"email"}},"oneOf":[{"type":"object","title":"Webhook","properties":{"type":{"type":"string","enum":["webhook"]},"format":{"type":"string","enum":["json","slack"]},"url":{"type":"string","description":"The URL of the webhook.
","format":"uri"}},"required":["type","url"],"additionalProperties":false},{"type":"object","title":"Email","properties":{"type":{"type":"string","enum":["email"]}},"required":["type"],"additionalProperties":false}],"required":["type"]},"publish":{"type":"boolean","description":"Only relevant for **automations**. If `false`, the automation will be inactive (will not be triggered).
"}},"additionalProperties":false,"required":["identifier","trigger","invocationMethod"]}}},"required":true}} > - -

- Path Parameters -

-
-
    - ","name":"action_identifier","required":true}} - > - - -
-
-
+ +\n\n Error\n Description\n\n\n not_found\n The action/automation with the provided identifier was not found\n\n\n"},"409":{"description":"One of the following errors occurred:\n\n\n\n \n \n\n\n \n \n\n
ErrorDescription
identifier_takenAn action/automation with the same identifier already exists
\n"},"422":{"description":"One of the following errors occurred:\n\n\n\n \n \n\n\n \n \n\n
ErrorDescription
invalid_requestThe data provided does not match the route schema
\n"},"500":{"description":"One of the following errors occurred:\n\n\n\n \n \n\n\n \n \n\n
ErrorDescription
internal_errorAn internal error occurred
\n"}}} > - -
- -

- Body -

- required - -
- -
    - ","type":"string","pattern":"^[A-Za-z0-9@_.+:\\\\/=-]+$"}} - > - - ","type":"string"}} - > - - ","type":"string"}} - > - - ","type":"string"}} - > - - -
    - - - - trigger - - object - - - - required - - -
    -
    - - oneOf - - -
    - - - The trigger definition of the new action.
    - - -
    ","enum":["DAY-2","DELETE"]}} - > - - - - Note that this is optional, as actions do not have to be tied directly to a blueprint.
    "}} - > - -
    -
    - - - - userInputs - - object - - - - required - - -
    -
    - - - The [user inputs](https://docs.getport.io/create-self-service-experiences/setup-ui-for-action/user-inputs/) of the action.
    - - -
    - - oneOf - - -
    - - - Use this option when you don't want to define a custom order/steps for the user inputs.
    - - -
    -
    - - - - properties - - object - - - - required - - -
    - -
    - - - - property name* - - object - - -
    - - - - - "}} - > - - ","items":{"type":"string"}}} - > - - -
    - - - - visible - - object - - -
    -
    - - - The visibility of the input. Resolves to a boolean value (`true` = visible).
    - - -
    - - oneOf - - - "}} - > - - - -
    - - - A boolean value determining the visibility of the input.
    - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    "}} - > - - -
    - - - - dataset - - object - - -
    - ","enum":["and","or"]}} - > - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - **Possible values:** `>= 1` - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - "}} - > - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - - - - - - -
    -
    -
    -
    - - - - -
    - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    - - - - items - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    - - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - sort - - object - - -
    -
    - - - Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
    This input allows you to sort the entities in the dropdown by a specific property.
    - - -
    "}} - > - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - required - - object - - -
    -
    - - - The action's user inputs that must be provided by the executed user.
    - - -
    - - oneOf - - -
    - - - A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
    - - -
    - - -
    -
    - - - The identifiers of the required inputs.
    - - -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    - - - Use this option when you want to define a custom order for the user inputs.
    - - -
    -
    - - - - properties - - object - - - - required - - -
    - -
    - - - - property name* - - object - - -
    - - - - - "}} - > - - ","items":{"type":"string"}}} - > - - -
    - - - - visible - - object - - -
    -
    - - - The visibility of the input. Resolves to a boolean value (`true` = visible).
    - - -
    - - oneOf - - - - - - -
    - - - A boolean value determining the visibility of the input.
    - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    "}} - > - - -
    - - - - dataset - - object - - -
    - ","enum":["and","or"]}} - > - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - **Possible values:** `>= 1` - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - - "}} - > - - - - -
    -
    -
    -
    - - "}} - > - - -
    - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    - - - - items - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - sort - - object - - -
    -
    - - - Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
    This input allows you to sort the entities in the dropdown by a specific property.
    - - -
    "}} - > - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - required - - object - - -
    -
    - - - The action's user inputs that must be provided by the executed user.
    - - -
    - - oneOf - - -
    - - - A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
    - - -
    - - -
    -
    - - - The identifiers of the required inputs.
    - - -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    ","items":{"type":"string"}}} - > - - -
    -
    - - - Use this option when you want to define custom steps for the user inputs.
    - - -
    -
    - - - - properties - - object - - - - required - - -
    - -
    - - - - property name* - - object - - -
    - - - - - "}} - > - - ","items":{"type":"string"}}} - > - - -
    - - - - visible - - object - - -
    -
    - - - The visibility of the input. Resolves to a boolean value (`true` = visible).
    - - -
    - - oneOf - - - ","type":"string"}} - > - - - -
    - - - A boolean value determining the visibility of the input.
    - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    "}} - > - - -
    - - - - dataset - - object - - -
    - ","enum":["and","or"]}} - > - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - **Possible values:** `>= 1` - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - "}} - > - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - - "}} - > - - - - -
    -
    -
    -
    - - "}} - > - - -
    - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    - - - - items - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - sort - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - required - - object - - -
    -
    - - - The action's user inputs that must be provided by the executed user.
    - - -
    - - oneOf - - -
    - - - A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
    - - -
    - - -
    -
    - - - The identifiers of the required inputs.
    - - -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - steps - - object[] - - - - required - - -
    -
    - - - The steps of the user inputs. Each step is an object containing its title and the order of its properties.
    - - -
  • -
    - Array [ -
    -
  • "}} - > - - ","items":{"type":"string"}}} - > - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - condition - - object - - -
    -
    - - - Filters used to include/exclude specific entities from the action. - - -
    - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - The [rules](https://docs.getport.io/search-and-query/#rules) used to filter entities.
    - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    -
    -
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
    -
    -
    -
    -
    - - - The trigger definition of the new action.
    - - -
    ","enum":["CREATE"]}} - > - - - - Note that this is optional, as actions do not have to be tied directly to a blueprint.
    "}} - > - -
    -
    - - - - userInputs - - object - - - - required - - -
    -
    - - - The [user inputs](https://docs.getport.io/create-self-service-experiences/setup-ui-for-action/user-inputs/) of the action.
    - - -
    - - oneOf - - -
    - - - Use this option when you don't want to define a custom order/steps for the user inputs.
    - - -
    -
    - - - - properties - - object - - - - required - - -
    - -
    - - - - property name* - - object - - -
    - - - - - "}} - > - - ","items":{"type":"string"}}} - > - - -
    - - - - visible - - object - - -
    -
    - - - The visibility of the input. Resolves to a boolean value (`true` = visible).
    - - -
    - - oneOf - - - "}} - > - - - -
    - - - A boolean value determining the visibility of the input.
    - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    "}} - > - - -
    - - - - dataset - - object - - -
    - ","enum":["and","or"]}} - > - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - **Possible values:** `>= 1` - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - "}} - > - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - - - - - - -
    -
    -
    -
    - - - - -
    - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    - - - - items - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    - - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - sort - - object - - -
    -
    - - - Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
    This input allows you to sort the entities in the dropdown by a specific property.
    - - -
    "}} - > - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - required - - object - - -
    -
    - - - The action's user inputs that must be provided by the executed user.
    - - -
    - - oneOf - - -
    - - - A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
    - - -
    - - -
    -
    - - - The identifiers of the required inputs.
    - - -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    - - - Use this option when you want to define a custom order for the user inputs.
    - - -
    -
    - - - - properties - - object - - - - required - - -
    - -
    - - - - property name* - - object - - -
    - - - - - "}} - > - - ","items":{"type":"string"}}} - > - - -
    - - - - visible - - object - - -
    -
    - - - The visibility of the input. Resolves to a boolean value (`true` = visible).
    - - -
    - - oneOf - - - - - - -
    - - - A boolean value determining the visibility of the input.
    - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    "}} - > - - -
    - - - - dataset - - object - - -
    - ","enum":["and","or"]}} - > - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - **Possible values:** `>= 1` - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - - "}} - > - - - - -
    -
    -
    -
    - - "}} - > - - -
    - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    - - - - items - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - sort - - object - - -
    -
    - - - Relevant only for `Entity selection` inputs (`type` = `string` and `format` = `entity`).
    This input allows you to sort the entities in the dropdown by a specific property.
    - - -
    "}} - > - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - required - - object - - -
    -
    - - - The action's user inputs that must be provided by the executed user.
    - - -
    - - oneOf - - -
    - - - A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
    - - -
    - - -
    -
    - - - The identifiers of the required inputs.
    - - -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    ","items":{"type":"string"}}} - > - - -
    -
    - - - Use this option when you want to define custom steps for the user inputs.
    - - -
    -
    - - - - properties - - object - - - - required - - -
    - -
    - - - - property name* - - object - - -
    - - - - - "}} - > - - ","items":{"type":"string"}}} - > - - -
    - - - - visible - - object - - -
    -
    - - - The visibility of the input. Resolves to a boolean value (`true` = visible).
    - - -
    - - oneOf - - - ","type":"string"}} - > - - - -
    - - - A boolean value determining the visibility of the input.
    - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    "}} - > - - -
    - - - - dataset - - object - - -
    - ","enum":["and","or"]}} - > - - -
    - - - - rules - - object[] - - - - required - - -
    -
    - - - **Possible values:** `>= 1` - - -
  • -
    - Array [ -
    -
  • - - anyOf - - - - - - - - - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - - - - - - - - - - - -
    -
    -
    -
    -
    - - - `, `>=`, `<`, `<=`]"} - schema={{"enum":[">",">=","<","<="]}} - > - - -
    - - - - value - - object - - - - required - - -
    -
    - - oneOf - - - "}} - > - - - - -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    - - - string - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    - - - - - -
    - - - - value - - object - - - - required - - -
    -
    - - anyOf - - - "}} - > - - - - -
    -
    -
    -
    - - "}} - > - - -
    - -
    - - - - propertySchema - - object - - - - required - - -
    - - - - - -
    - - - - items - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    - - -
    - - - - value - - object - - -
    -
    - - anyOf - - -
    - - - string - - -
    -
    -
    - - - number - - -
    -
    -
    - - - boolean - - -
    -
    - "}} - > - - - -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - sort - - object - - -
    - - - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - required - - object - - -
    -
    - - - The action's user inputs that must be provided by the executed user.
    - - -
    - - oneOf - - -
    - - - A jq query that runs on the action's inputs and resolves to a boolean value (`true` = required).
    - - -
    - - -
    -
    - - - The identifiers of the required inputs.
    - - -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    - - - - steps - - object[] - - - - required - - -
    -
    - - - The steps of the user inputs. Each step is an object containing its title and the order of its properties.
    - - -
  • -
    - Array [ -
    -
  • "}} - > - - ","items":{"type":"string"}}} - > - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - The trigger definition of the new action.
    - - -
    - - -
    - - - - event - - object - - - - required - - -
    -
    - - - The [event](https://docs.getport.io/actions-and-automations/define-automations/setup-trigger) that triggers the action.
    - - -
    - - oneOf - - - - - "}} - > - - - - - - "}} - > - - - - - - "}} - > - - - - - - "}} - > - - "}} - > - - - - - - "}} - > - - - - -
    -
    -
    -
    -
    - - - - condition - - object - - -
    -
    - - - Filters used to include/exclude specific entities from the automation. - - -
    - - oneOf - - - - - Read more [here](https://docs.getport.io/actions-and-automations/define-automations/setup-trigger#conditions).
    ","items":{"type":"string"}}} - > - -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - invocationMethod - - object - - - - required - - -
    -
    - - - Details the action's backend type and details.
    - - -
    - - oneOf - - - - - ","type":"object"}} - > - - - - - - "}} - > - - "}} - > - - "}} - > - - "}} - > - - "}} - > - - "}} - > - - - - - - "}} - > - - "}} - > - - "}} - > - - "}} - > - - "}} - > - - - - - - "}} - > - - "}} - > - - - - "}} - > - - - - - - "}} - > - - "}} - > - - "}} - > - - - - - - "}} - > - - -
    - - - - mapping - - object - - - - required - - -
    -
    - - - An object containing the entity's properties and their new values.
    - - -
    "}} - > - - "}} - > - - -
    - - - - team - - object - - -
    -
    - - - The team/s the entity belongs to.
    - - -
    - - oneOf - - -
    - - - string - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    "}} - > - - "}} - > - - -
    - - - - relations - - object - - -
    -
    - - - The relations of the upserted entity, in `"key"`:`"value"` pairs, where the key is the relation's identifier and the value is the related entity's identifier.
    - - -
    -
    - - - - property name* - - object - - -
    -
    - - oneOf - - -
    - - - string - - -
    -
    -
  • -
    - Array [ -
    -
  • - - - string - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - requiredApproval - - object - - -
    -
    - - - Determines whether the action requires approval before execution.
    Choose `ALL` to require all specified users to approve the action, or `ANY` to require only one.
    - - -
    - - oneOf - - - - - - -
    - - - boolean - - -
    -
    -
    -
    -
    -
    -
    -
    - - - - approvalNotification - - object - - -
    -
    - - - The notification configuration for the approval process. Relevant only if `requiredApproval` is set to `true`.
    - - -
    - - oneOf - - - - - - - ","format":"uri"}} - > - - - - - - - - -
    - - -
    -
    -
    "}} - > - - -
-
-
-
-
- - -
- - - Success - - -
- -
-
-
- - - One of the following errors occurred: - - - - - - - - - - -
ErrorDescription
not_foundThe action/automation with the provided identifier was not found
- - - -
- -
-
-
- - - One of the following errors occurred: - - - - - - - - - - -
ErrorDescription
identifier_takenAn action/automation with the same identifier already exists
- - - -
- -
-
-
- - - One of the following errors occurred: - - - - - - - - - - -
ErrorDescription
invalid_requestThe data provided does not match the route schema
- - - -
- -
-
-
- - - One of the following errors occurred: - - - - - - - - - - -
ErrorDescription
internal_errorAn internal error occurred
- - - -
- -
-
-
-
-
+ + + + \ No newline at end of file diff --git a/docs/api-reference/update-an-actions-permissions.api.mdx b/docs/api-reference/update-an-actions-permissions.api.mdx index 1f0363fe3..7cb90ed67 100644 --- a/docs/api-reference/update-an-actions-permissions.api.mdx +++ b/docs/api-reference/update-an-actions-permissions.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: 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 sidebar_class_name: "patch api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/docs/api-reference/update-credentials.api.mdx b/docs/api-reference/update-credentials.api.mdx index 6fc00a904..3076632eb 100644 --- a/docs/api-reference/update-credentials.api.mdx +++ b/docs/api-reference/update-credentials.api.mdx @@ -7,7 +7,7 @@ hide_title: true hide_table_of_contents: true api: eJy9VU+P0zoQ/yrRnEAK7S7HCCEV9A6Iywp2T6tKTONpYzaJjT1uKZG/Oxo7tOlu4MF7EpfWiWfs+f2ZyQCKfO20ZW16qOC20b5wJjAV2Lbm4IujCQWbIliFTAU3VPTYUWG2BRaeWBa1I0U9a2x9oXvJcMWNcVwYt8Nef0M5fPFq45avoQTGnYfqHlbWeliX4OhLIM9vjDpCNUBteqaeZYnWtrpO2cvPXuobwNcNdSgrPlqCCszmM9UMJVhnLDnW5GVXipxEeXa630H5BC4VPR1OkATeFI0nHuuOsQRUSksitjeTu7bYesowtCMl0NLl6yg559fsAsUSLDrsiMkJCTN4xkpjCVoqtMgNlCMc0GoWwietPv2k/KTfAXs+i3hS4lFt6xI81cFpPqbSNoSOnODJeRUmxWLSzFvT+0z1y6sr+bss6y6lqMKHuibvt6Ftjwsof1/eSznNw4Qi7I9QAvWhg+peSl+LONb+V1dEOQw3rTBx2tsY0xL2SQg1m1M7EogrnvPZ1rgOGSoQGl6w7khSMpF/lOKpdjQTHx/Z6144Wv+LSX9Ho5hP7ogbo8SBIfEoPqxgub9eig2Wg1YRpDq3/2Hl4FqooGG2vlou0erFjtgaxwttIJZzAcFfxEwc+FGMkEX74cOz/la/p+O5K1aBG+PGOQNj4zSEilzqWzHXh/OU+ecrdralsx8uem5r0k2aJQLSGFvdvIMSBGfm7XpxJbHWeO6wn5yTCZ224ON2ncy3vzJrM2FMX3lpW9TJzkmGYVT0HvbXkLpHaq20Eg81xrNsDcMGPd25NkZ5/SWQk9GwLmGPTkvHJOGV9mP3zNlsCvnZh9Gvz4v/MbdmUV3Mhj22QZ6ghAc65sEZZUqMrpCq88bbXNuLW0k/Jz6ZTeLfnLGqa7L8y9j1pH1u7m6hhM34deuMkhSHB5m/eMg1mkRVMnt6N0CL/S7gTmLzken7E0SxaRs8pDYYFwJqloXH/ZFxyK+gmk0ZhtxkMZ7i89ZPM0ZmT4QLDTHG74dI4Oo= sidebar_class_name: "put api-method" -info_path: api-reference-temp/port-api +info_path: api-reference/port-api custom_edit_url: null --- diff --git a/static/apispec.yaml b/static/apispec.yaml index 35e1d165a..bd70feae4 100644 --- a/static/apispec.yaml +++ b/static/apispec.yaml @@ -8501,7 +8501,7 @@ paths: - type publish: type: boolean - description: If `true`, the action will be visible to all users and available for use.
+ description: Only relevant for **automations**. If `false`, the automation will be inactive (will not be triggered).
additionalProperties: false required: - identifier @@ -11359,7 +11359,7 @@ paths: - type publish: type: boolean - description: If `true`, the action will be visible to all users and available for use.
+ description: Only relevant for **automations**. If `false`, the automation will be inactive (will not be triggered).
additionalProperties: false required: - identifier