Skip to main content
GET
/
api
/
v1
/
workflows
List workflows for an institution
curl --request GET \
  --url https://api.scholarlysoftware.com/api/v1/workflows \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "type": "workflow",
      "attributes": {
        "name": "<string>",
        "begins_on": "2023-12-25",
        "ends_on": "2023-12-25",
        "evaluation_period_start": "2023-12-25",
        "evaluation_period_end": "2023-12-25",
        "category": "<string>",
        "draft_mode": true,
        "archived_at": "<string>",
        "created_at": "<string>",
        "updated_at": "<string>"
      },
      "relationships": {
        "institution": {
          "links": {
            "related": "<string>"
          }
        },
        "department": {
          "links": {
            "related": "<string>"
          }
        }
      }
    }
  ],
  "meta": {
    "page": {
      "cursor": "<string>"
    }
  },
  "links": {
    "first": "<string>",
    "last": "<string>",
    "next": "<string>",
    "prev": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string
required

Bearer token

Query Parameters

page[size]
integer

Number of items per page (max 100)

page[after]
string

Cursor for next page

page[before]
string

Cursor for previous page

Response

workflows found for non-admin user

data
object[]
required
meta
object
I