Get a specific stock item

GET /stock/{id}

Return a specific stock item.

Path parameters

  • id integer Required

    Which item to be processed

    Minimum value is 0.

Responses

  • 200 application/json

    List returned OK

    Hide response attributes Show response attributes object
    • id integer

      Minimum value is 1.

    • stockcode string
    • description string
    • location_id integer

      If supplied, must link to a valid Location

    • campaign_id integer

      If supplied, must link to a valid campaign that the logged in user can see

    • current_stock integer

      Minimum value is 0.

    • reorder_stock integer

      When to request a re-order

      Minimum value is 0.

    • administrator_user_id integer

      CORE user id for the person who administers this stock item

    • item_price number

      Minimum value is 0.

    • cost_price number

      Minimum value is 0.

    • event_id integer

      If supplied, must link to a valid event, and event_date

    • event_date string

      If supplied, must link to a valid event along with event_id

    • early_bird_end_date_local string

      If supplied, the last date a discount price is available

    • early_bird_price number

      Minimum value is 0.

  • 401 application/json

    Authentication unauthorised

    Hide response attribute Show response attribute object
    • error string
  • 403 application/json

    Invalid permission

    Hide response attribute Show response attribute object
    • error string
  • 404 application/json

    Not Found

    Hide response attribute Show response attribute object
    • error string
GET /stock/{id}
curl \
 --request GET 'https://YOURSITE.infoodle.com/apiv2/stock/99' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id": 123,
  "stockcode": "EVT#1",
  "description": "Event Tickets",
  "location_id": 45,
  "campaign_id": 421,
  "current_stock": 100,
  "reorder_stock": 5,
  "administrator_user_id": 542123,
  "item_price": 120.5,
  "cost_price": 100.5,
  "event_id": 54,
  "event_date": "2026-02-29",
  "early_bird_end_date_local": "2026-01-01",
  "early_bird_price": 70.5
}
Response examples (401)
{
  "error": "Unauthorised"
}
Response examples (403)
{
  "error": "Invalid Permission"
}
Response examples (404)
{
  "error": "Not Found"
}