> ## Documentation Index
> Fetch the complete documentation index at: https://docs.spot-nik.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List resources

> Returns all Monday.com users configured as resources in SuperPlanner for this account.



## OpenAPI

````yaml https://live1-service-7042312-f94c764b.us.monday.app/api/public/v1/openapi.json get /api/public/v1/resource
openapi: 3.1.0
info:
  title: SuperPlanner Public API
  description: >-
    Public API for integrating with SuperPlanner. Authenticate all requests with
    `Authorization: Bearer <token>`, where the token is an API key generated in
    the SuperPlanner settings.
  version: 1.0.0
servers:
  - url: https://live1-service-7042312-f94c764b.us.monday.app
    description: United States
  - url: https://live1-service-7042312-f94c764b.eu.monday.app
    description: Europe
  - url: https://live1-service-7042312-f94c764b.au.monday.app
    description: Australia
  - url: https://live1-service-7042312-f94c764b.il.monday.app
    description: Israel
security: []
paths:
  /api/public/v1/resource:
    get:
      tags:
        - Resources
      summary: List resources
      description: >-
        Returns all Monday.com users configured as resources in SuperPlanner for
        this account.
      operationId: get_resources_api_public_v1_resource_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/Resource'
                type: array
                title: Response Get Resources Api Public V1 Resource Get
      security:
        - HTTPBearer: []
components:
  schemas:
    Resource:
      properties:
        _id:
          type: string
          title: Id
          description: Monday.com user ID of this resource.
        accountId:
          type: string
          title: Accountid
          description: Account this resource belongs to.
        create_date:
          type: string
          format: date-time
          title: Create Date
          description: UTC timestamp when the resource was created.
        roleId:
          anyOf:
            - type: string
            - type: 'null'
          title: Roleid
          description: ID of the role assigned to this resource.
        skillsIds:
          items:
            type: string
          type: array
          title: Skillsids
          description: IDs of skills assigned to this resource.
        workingDays:
          items:
            type: integer
          type: array
          title: Workingdays
          description: >-
            Days of the week this resource works (0=Monday, 1=Tuesday, ...,
            6=Sunday).
        dailyCapacity:
          type: number
          title: Dailycapacity
          description: >-
            Daily capacity of the resource. The unit depends on the account
            configuration (e.g. hours, story points, tasks).
        calendarsIds:
          items:
            type: string
          type: array
          title: Calendarsids
          description: IDs of holiday calendars assigned to this resource.
        salary:
          anyOf:
            - $ref: '#/components/schemas/Salary'
            - type: 'null'
          description: Salary information for this resource.
      type: object
      required:
        - _id
        - accountId
        - workingDays
        - dailyCapacity
      title: Resource
    Salary:
      properties:
        amount:
          type: integer
          title: Amount
          description: Salary amount in the given currency.
          default: 0
        currency:
          type: string
          title: Currency
          description: ISO 4217 currency code, e.g. 'USD', 'EUR'.
          default: USD
        period:
          $ref: '#/components/schemas/SalaryPeriod'
          description: Period the salary amount refers to.
          default: monthly
      type: object
      title: Salary
    SalaryPeriod:
      type: string
      enum:
        - hourly
        - daily
        - monthly
        - yearly
      title: SalaryPeriod
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````