Skip to main content
GET
/
api
/
apps
/
installedmarketplaceapplications
/
{id}
Get one InstalledMarketPlaceApplication
curl --request GET \
  --url https://spaces.nexudus.com/api/apps/installedmarketplaceapplications/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "MarketPlaceApplicationId": 123,
  "BusinessId": 123,
  "ProvideProducts": true,
  "ProvideResources": true,
  "ProvideEvents": true,
  "ProvideTariffs": true,
  "ProvideResourceAvailability": true,
  "ProvideResourcePrices": true,
  "AcceptBookings": true,
  "AcceptEventSignups": true,
  "AcceptPaymentRequests": true,
  "Id": 123,
  "UniqueId": "<string>",
  "CreatedOn": "<string>",
  "UpdatedOn": "<string>",
  "UpdatedBy": "<string>",
  "IsNew": true,
  "SystemId": "<string>"
}
An InstalledMarketPlaceApplication represents a marketplace application that has been installed for a business. Marketplace apps extend platform functionality with integrations, automations, and additional features.

Authentication

This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header. The authenticated user must be a full unrestricted administrator or have the InstalledMarketPlaceApplication-Read role.

Path Parameters

id
integer
required
The Id of the InstalledMarketPlaceApplication record to retrieve.

Code Examples

curl -X GET \
  "https://spaces.nexudus.com/api/apps/installedmarketplaceapplications/87654321" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response

200

MarketPlaceApplicationId
integer
ID of the market place application linked to this record.
BusinessId
integer
ID of the business linked to this record.
ProvideProducts
boolean
Whether provide products is enabled.
ProvideResources
boolean
Whether provide resources is enabled.
ProvideEvents
boolean
Whether provide events is enabled.
ProvideTariffs
boolean
Whether provide tariffs is enabled.
ProvideResourceAvailability
boolean
Whether provide resource availability is enabled.
ProvideResourcePrices
boolean
Whether provide resource prices is enabled.
AcceptBookings
boolean
Whether accept bookings is enabled.
AcceptEventSignups
boolean
Whether accept event signups is enabled.
AcceptPaymentRequests
boolean
Whether accept payment requests is enabled.
Id
integer
Unique record identifier.
UniqueId
string
UUID of the record.
CreatedOn
string
Date and time the record was created (ISO 8601).
UpdatedOn
string
Date and time the record was last updated (ISO 8601).
UpdatedBy
string
Email of the user who last updated this record.
IsNew
boolean
Whether the record was recently created.
SystemId
string
External system identifier.
Example Response
{
  "MarketPlaceApplicationId": 0,
  "BusinessId": 0,
  "ProvideProducts": false,
  "ProvideResources": false,
  "ProvideEvents": false,
  "ProvideTariffs": false,
  "ProvideResourceAvailability": false,
  "ProvideResourcePrices": false,
  "AcceptBookings": false,
  "AcceptEventSignups": false,
  "AcceptPaymentRequests": false,
  "Id": 87654321,
  "UpdatedOn": "2025-01-15T10:30:00Z",
  "CreatedOn": "2025-01-10T08:00:00Z",
  "UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "UpdatedBy": "admin@example.com",
  "IsNew": false,
  "SystemId": null,
  "ToStringText": "InstalledMarketPlaceApplication Example",
  "LocalizationDetails": null,
  "CustomFields": null
}