Get Price List By ID

GET /price_lists/{priceListId}

Get a single price list by ID

Path parameters

  • priceListId string(guid) Required

    Unique ID of the price list

Responses

  • 200 application/json

    A single price list

    Hide response attributes Show response attributes object
    • id string(guid)

      System generated unique identifier. Don't include this in POST request body.

    • name string
    • created_at string(date-time)
    • updated_at string(date-time)
GET /price_lists/{priceListId}
curl \
 --request GET 'https://app.getfoundation.com/api/external/v1/price_lists/{priceListId}' \
 --header "X-API-Key: $API_KEY"
Response examples (200)
{
  "id": "9aa62446-c3b0-42f5-8027-3648daed9d73",
  "name": "string",
  "created_at": "2025-05-04T09:42:00Z",
  "updated_at": "2025-05-04T09:42:00Z"
}