MuleSoft Forge
GitHub
  • MuleSoft Forge Initiative
    • Overview
    • How to Contribute
  • Connectors
    • mule-idp-connector
      • Set Up
      • Operations
        • Service IDP - Execution - Submit
        • Service IDP - Execution Result - Retrieve
        • Service IDP - Review Tasks - List
        • Service IDP - Review Task - Delete
        • Service IDP - Review Task - Update
        • Platform IDP - Actions - List
        • Platform IDP - Action Versions - List
        • Deprecated 1.0.1 - Utils IDP - PDF - ExtractText
        • Deprecated 1.0.1 - Utils IDP - PDF - RemovePages
      • docs.mulesoft.com
      • MuleSoft IDP Universal 馃寪 REST Smart Connector 馃攲
  • Modules
    • mule-pdfbox-module
      • Set Up
      • Operations
        • Apache PDFBox - Extract Text
        • Apache PDFBox - Filter Pages
        • Apache PDFBox - Get Info
        • Apache PDFBox - Merge PDFs
        • Apache PDFBox - Rotate Pages
        • Apache PDFBox - Split Pages
Powered by GitBook
On this page
  1. Connectors
  2. mule-idp-connector
  3. Operations

Platform IDP - Action Versions - List

Delete a Review Task

PreviousPlatform IDP - Actions - ListNextDeprecated 1.0.1 - Utils IDP - PDF - ExtractText

Last updated 2 months ago

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 Action Versions

get

Retrieves a list of available versions for a specific IDP Action from the Anypoint Platform. Example URL: https://anypoint.mulesoft.com/idp/api/v1/organizations/{orgId}/actions/{actionId}/versions?page=0&size=10&sort=version,desc

Authorizations
Path parameters
organizationIdstring 路 uuidRequired

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

Example: 01f79c97-9a83-4194-b922-15b64fd7305e
actionIdstring 路 uuidRequired

The unique identifier (UUID) of the published Document Action.

Example: 90c3e286-72b5-42ca-92d0-22f86ea8d766
Query parameters
pageinteger 路 int32Optional

Zero Based page index.

Default: 0
sizeinteger 路 int32Optional

Number of items per page.

Default: 20
sortstringOptional

Sorting criteria (currently only 'version,desc' seems implied by example, confirm other options).

Default: version,desc
Responses
200
Success - List of action versions retrieved.
application/json
404
Not Found - Action ID not found.
application/problem+json
get
GET /idp/api/v1/organizations/{organizationId}/actions/{actionId}/versions HTTP/1.1
Host: 
Authorization: Basic username:password
Accept: */*
[
  {
    "actionId": "90c3e286-72b5-42ca-92d0-22f86ea8d766",
    "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",
    "operations": [
      {
        "createdAt": "2024-06-24T16:56:37.372612Z",
        "id": "4d4fda9b-b772-4085-ac61-078af3b54543",
        "info": {
          "baseUrl": "https://idp-rt.us-east-1.anypoint.mulesoft.com"
        },
        "result": "text",
        "status": "SUCCESS",
        "type": "RUNTIME_PUBLICATION",
        "updatedAt": "2024-06-24T17:03:55.950227Z"
      }
    ],
    "organizationId": "01f79c97-9a83-4194-b922-15b64fd7305e",
    "status": "SUCCESS",
    "updatedAt": "2024-06-24T17:03:55.950227Z",
    "version": "1.1.0"
  }
]
  • Configuration:
  • Underlying API:
  • GETPlatform API - List IDP Action Versions