Platform IDP - Actions - List

Delete a Review Task

Equivalent to: None. This exposes a service not surfaced by the MuleSoft IDP user interface or published connector


Configuration:


Underlying API:

Platform API - List IDP Actions

get

Retrieves a list of published IDP Actions within the specified organization from the Anypoint Platform. Example URL: https://anypoint.mulesoft.com/idp/api/v1/organizations/{orgId}/actions?page=0&size=5&sort=type,desc

Authorizations
Path parameters
organizationIdstring · uuidRequired

Your Anypoint Organisation ID (UUID). See: Find your Organization ID.

Example: 01f79c97-9a83-4194-b922-15b64fd7305e
Query parameters
pageinteger · int32Optional

Zero Based page index.

Default: 0
sizeinteger · int32Optional

Number of items per page.

Default: 20
sortstring · enumOptional

Sorting criteria (field,direction).

Default: updatedAt,descPossible values:
Responses
200
Success - List of IDP actions retrieved.
application/json
get
GET /idp/api/v1/organizations/{organizationId}/actions HTTP/1.1
Host: 
Authorization: Basic username:password
Accept: */*
200

Success - List of IDP actions retrieved.

{
  "actions": [
    {
      "configuration": {
        "content": {
          "output": {
            "fields": {
              "ANY_ADDITIONAL_PROPERTY": "anything"
            },
            "prompts": {
              "ANY_ADDITIONAL_PROPERTY": {
                "confidenceThreshold": 70,
                "hidden": false,
                "prompt": "What is the purchase order number?",
                "required": true,
                "source": "document"
              }
            },
            "tables": {
              "ANY_ADDITIONAL_PROPERTY": "anything"
            }
          }
        },
        "version": "1.1.0"
      },
      "createdAt": "2024-06-24T16:56:37.372612Z",
      "createdBy": "4d4fda9b-b772-4085-ac61-078af3b54543",
      "description": "CD656092-BurlingtonTextiles Purchase Order",
      "empowerWith": "NLP",
      "id": "90c3e286-72b5-42ca-92d0-22f86ea8d766",
      "name": "IDP-PO-CD656092-BurlingtonTextiles",
      "organizationId": "01f79c97-9a83-4194-b922-15b64fd7305e",
      "registration": {
        "message": "",
        "status": "REGISTERED"
      },
      "type": "GENERIC",
      "updatedAt": "2024-06-24T17:03:55.950227Z"
    }
  ],
  "total": 6
}

Last updated