GET
/
api2
/
v1
/
async
List pending requests
curl --request GET \
  --url https://cloud.memsource.com/web/api2/v1/async
{
  "totalElements": 123,
  "totalPages": 123,
  "pageSize": 123,
  "pageNumber": 123,
  "numberOfElements": 123,
  "content": [
    {
      "id": "<string>",
      "createdBy": {
        "firstName": "<string>",
        "lastName": "<string>",
        "userName": "<string>",
        "email": "<string>",
        "role": "SYS_ADMIN",
        "id": "<string>",
        "uid": "<string>"
      },
      "dateCreated": "2023-11-07T05:31:56Z",
      "action": "PRE_ANALYSE",
      "asyncResponse": {
        "dateCreated": "2023-11-07T05:31:56Z",
        "errorCode": "<string>",
        "errorDesc": "<string>",
        "errorDetails": [
          {
            "code": "<string>",
            "args": {},
            "message": "<string>"
          }
        ],
        "warnings": [
          {
            "code": "<string>",
            "args": {},
            "message": "<string>"
          }
        ],
        "acceptedSegmentsCount": 123
      },
      "parent": {},
      "project": {
        "name": "<string>",
        "uid": "<string>"
      }
    }
  ],
  "sort": {
    "orders": [
      {
        "direction": "ASC",
        "property": "<string>"
      }
    ]
  }
}

Query Parameters

all
boolean
default:false

Pending requests for organization instead of current user. Only for ADMIN.

pageNumber
integer
default:0

Page number, starting with 0, default 0

Required range: x >= 0
pageSize
integer
default:50

Page size, accepts values between 1 and 50, default 50

Required range: 1 <= x <= 50

Response

200
application/json

successful operation

The response is of type object.