Skip to main content
GET
/
api
/
public
/
v1
/
resource
List resources
curl --request GET \
  --url https://live1-service-7042312-f94c764b.us.monday.app/api/public/v1/resource \
  --header 'Authorization: Bearer <token>'
[
  {
    "_id": "<string>",
    "accountId": "<string>",
    "workingDays": [
      123
    ],
    "dailyCapacity": 123,
    "create_date": "2023-11-07T05:31:56Z",
    "roleId": "<string>",
    "skillsIds": [
      "<string>"
    ],
    "calendarsIds": [
      "<string>"
    ],
    "salary": {
      "amount": 0,
      "currency": "USD",
      "period": "monthly"
    }
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

_id
string
required

Monday.com user ID of this resource.

accountId
string
required

Account this resource belongs to.

workingDays
integer[]
required

Days of the week this resource works (0=Monday, 1=Tuesday, ..., 6=Sunday).

dailyCapacity
number
required

Daily capacity of the resource. The unit depends on the account configuration (e.g. hours, story points, tasks).

create_date
string<date-time>

UTC timestamp when the resource was created.

roleId
string | null

ID of the role assigned to this resource.

skillsIds
string[]

IDs of skills assigned to this resource.

calendarsIds
string[]

IDs of holiday calendars assigned to this resource.

salary
Salary · object

Salary information for this resource.