Skip to main content

Get Queue Items

Retrieves a list of transactions from an indicated queue

Input

  • Queue Name: The name of the queue to get items from
    • Type: System.String
    • Required
  • Queue Item States: Filter items by state.
    • Type: System.String
    • Required

Options

  • Reference: Filter items by reference
    • Type: System.String
  • From: Filters items by minimum creation date
    • Type: System.DateTime
  • To: Filters items by maximum creation date
    • Type: System.DateTime

Output

  • Queue Items: Queue items retrieved from Automind Hub
    • Type: System.Collections.Generic.IEnumerable<ArenaRobotics.Domain.Entities.ServiceQueueItem>
    • Required

Misc

  • Timeout: Specifies the amount of time (in milliseconds) to wait for the activity to run before an error is thrown. The default value is 30000 milliseconds (30 seconds).
    • Type: System.Int32

Pagination

  • Skip: Number of items to skip
    • Type: System.Int32
  • Top: Max number of items to retrieve
    • Type: System.Int32

Details

  • Queue Item States can be filtered by the following values:
    • New
    • InProgress
    • Failed
    • Successful
    • Abandoned
    • Retried
    • Deleted