API

Retrieve a scheduled event

Retrieves information about an existing scheduled event.

GET/v1/hq/scheduled_events/{scheduled_event_id}
AuthorizationBearer <token>

The Noona HQ API uses Bearer token for authentication.

Endpoints that return generic information that does not contain sensitive data do not require authentication. Endpoints that require authentication are specifically marked in the documentation.

Authorization: Bearer your-token

In: header

Path Parameters

scheduled_event_id*string

Scheduled Event ID

Query Parameters

select?array<string>
expand?array<string>

Response Body

application/json

curl -X GET "https://api.noona.is/v1/hq/scheduled_events/string"
{
  "id": "se_abc123",
  "company": "string",
  "name": "Imagine Dragons Concert",
  "name_translations": {
    "is": "King Accounting tenging",
    "fr": "Connexion King Accounting"
  },
  "description": "Live concert at O2 Arena",
  "description_translations": {
    "is": "King Accounting tenging",
    "fr": "Connexion King Accounting"
  },
  "starts_at": "2024-03-15T20:00:00Z",
  "ends_at": "2024-03-15T23:00:00Z",
  "marketplace_visible": true,
  "allow_cancellation": true,
  "min_cancel_notice_minutes": 1440,
  "customer_selects_tier": true,
  "employees": [
    "string"
  ],
  "resources": [
    {
      "id": "7dj29KiAE1wdjw731",
      "company": "string",
      "resource_group": {
        "id": "string"
      },
      "type": "space",
      "name": "Table 1",
      "name_translations": {
        "is": "King Accounting tenging",
        "fr": "Connexion King Accounting"
      },
      "description": "A good window view",
      "description_translations": {
        "is": "King Accounting tenging",
        "fr": "Connexion King Accounting"
      },
      "priority": "normal",
      "image": {
        "thumb": "https://placekitten.com/200/200",
        "image": "https://placekitten.com/200/300",
        "public_id": "https://placekitten.com/200/300",
        "type": "thumbnail",
        "provider": "cloudinary",
        "width": 200,
        "height": 300,
        "bytes": 95849
      },
      "reference_id": "1234567890",
      "marketplace": true,
      "available_for_bookings": true,
      "booking_interval": 15,
      "order": 1,
      "min_capacity": 1,
      "max_capacity": 2,
      "allow_overlapping_bookings": false,
      "sub_resources": [
        "string"
      ],
      "event_type_preferences": [
        {
          "event_type": "string",
          "skip": false,
          "skip_calendar": false,
          "skip_marketplace": false,
          "has_custom_duration": false,
          "custom_duration": {
            "duration": 60,
            "before_pause": 25,
            "pause": 10,
            "after_pause": 25
          }
        }
      ],
      "created_at": "2019-08-24T14:15:22Z",
      "updated_at": "2019-08-24T14:15:22Z"
    }
  ],
  "images": [
    {
      "thumb": "https://placekitten.com/200/200",
      "image": "https://placekitten.com/200/300",
      "public_id": "https://placekitten.com/200/300",
      "type": "thumbnail",
      "provider": "cloudinary",
      "width": 200,
      "height": 300,
      "bytes": 95849
    }
  ],
  "tiers": [
    {
      "event_type": "string",
      "resource": {
        "id": "7dj29KiAE1wdjw731",
        "company": "string",
        "resource_group": {
          "id": "string"
        },
        "type": "space",
        "name": "Table 1",
        "name_translations": {
          "is": "King Accounting tenging",
          "fr": "Connexion King Accounting"
        },
        "description": "A good window view",
        "description_translations": {
          "is": "King Accounting tenging",
          "fr": "Connexion King Accounting"
        },
        "priority": "normal",
        "image": {
          "thumb": "https://placekitten.com/200/200",
          "image": "https://placekitten.com/200/300",
          "public_id": "https://placekitten.com/200/300",
          "type": "thumbnail",
          "provider": "cloudinary",
          "width": 200,
          "height": 300,
          "bytes": 95849
        },
        "reference_id": "1234567890",
        "marketplace": true,
        "available_for_bookings": true,
        "booking_interval": 15,
        "order": 1,
        "min_capacity": 1,
        "max_capacity": 2,
        "allow_overlapping_bookings": false,
        "sub_resources": [
          "string"
        ],
        "event_type_preferences": [
          {
            "event_type": "string",
            "skip": false,
            "skip_calendar": false,
            "skip_marketplace": false,
            "has_custom_duration": false,
            "custom_duration": {
              "duration": 60,
              "before_pause": 25,
              "pause": 10,
              "after_pause": 25
            }
          }
        ],
        "created_at": "2019-08-24T14:15:22Z",
        "updated_at": "2019-08-24T14:15:22Z"
      },
      "name": "Floor",
      "name_translations": {
        "is": "King Accounting tenging",
        "fr": "Connexion King Accounting"
      },
      "description": "Standing area near the stage",
      "description_translations": {
        "is": "King Accounting tenging",
        "fr": "Connexion King Accounting"
      },
      "max_capacity": 300,
      "min_group_size": 1,
      "max_group_size": 4,
      "price": 10000,
      "currency": "USD",
      "variations": [
        {
          "id": "string",
          "label": "VIP Meet & Greet",
          "label_translations": {
            "is": "King Accounting tenging",
            "fr": "Connexion King Accounting"
          },
          "description": "Includes backstage pass",
          "description_translations": {
            "is": "King Accounting tenging",
            "fr": "Connexion King Accounting"
          },
          "price": 25000
        }
      ],
      "capacity": 300,
      "remaining": 250,
      "is_full": false
    }
  ],
  "total_capacity": 500,
  "remaining_capacity": 350,
  "is_full": false,
  "created_at": "2019-08-24T14:15:22Z",
  "updated_at": "2019-08-24T14:15:22Z"
}
Empty
Empty