@salesforce/lds-adapters-platform-appexchange 1.404.0-dev2 → 1.404.0-dev20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/es2018/platform-appexchange.js +3168 -1797
- package/dist/es/es2018/types/src/generated/adapters/getActionDetails.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/getAssetActions.d.ts +36 -0
- package/dist/es/es2018/types/src/generated/adapters/getAssetTopics.d.ts +36 -0
- package/dist/es/es2018/types/src/generated/adapters/getTopicDetails.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +4 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +9 -1
- package/dist/es/es2018/types/src/generated/resources/getConnectAppexchangeAssetsActions.d.ts +24 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectAppexchangeAssetsListingsActionsByActionIdAndListingId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectAppexchangeAssetsListingsTopicsByListingIdAndTopicId.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/getConnectAppexchangeAssetsTopics.d.ts +24 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeActionDetailsRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeActionInfoRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAgentInfoRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetActionRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetActionsCollectionRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetListingDetailsRepresentation.d.ts +99 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetListingRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetNodeRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetTopicRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeAssetTopicsCollectionRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeTopicDetailsRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/AppExchangeTopicInfoRepresentation.d.ts +34 -0
- package/package.json +3 -3
- package/sfdc/index.js +3053 -1650
- package/src/raml/api.raml +679 -0
- package/src/raml/luvio.raml +26 -0
package/src/raml/api.raml
CHANGED
|
@@ -2983,7 +2983,686 @@ types:
|
|
|
2983
2983
|
primaryKey:
|
|
2984
2984
|
description: The primary key
|
|
2985
2985
|
type: string
|
|
2986
|
+
AppExchangeAssetTopicRepresentation:
|
|
2987
|
+
description: Represents an AppExchange asset topic
|
|
2988
|
+
type: object
|
|
2989
|
+
properties:
|
|
2990
|
+
description:
|
|
2991
|
+
description: The description of the asset topic
|
|
2992
|
+
type: string
|
|
2993
|
+
required: false #Hand-rolled
|
|
2994
|
+
id:
|
|
2995
|
+
description: The unique identifier of the asset topic
|
|
2996
|
+
type: string
|
|
2997
|
+
required: false #Hand-rolled
|
|
2998
|
+
listingId:
|
|
2999
|
+
description: The listing ID associated with the asset topic
|
|
3000
|
+
type: string
|
|
3001
|
+
required: false #Hand-rolled
|
|
3002
|
+
numActions:
|
|
3003
|
+
description: The number of actions for the asset topic
|
|
3004
|
+
type: integer
|
|
3005
|
+
required: false #Hand-rolled
|
|
3006
|
+
title:
|
|
3007
|
+
description: The title of the asset topic
|
|
3008
|
+
type: string
|
|
3009
|
+
required: false #Hand-rolled
|
|
3010
|
+
AppExchangeAssetListingRepresentation:
|
|
3011
|
+
description: Represents an AppExchange asset listing
|
|
3012
|
+
type: object
|
|
3013
|
+
properties:
|
|
3014
|
+
logoUrl:
|
|
3015
|
+
description: The logo URL of the listing
|
|
3016
|
+
type: string
|
|
3017
|
+
required: false #Hand-rolled
|
|
3018
|
+
publisherName:
|
|
3019
|
+
description: The publisher name of the listing
|
|
3020
|
+
type: string
|
|
3021
|
+
required: false #Hand-rolled
|
|
3022
|
+
title:
|
|
3023
|
+
description: The title of the listing
|
|
3024
|
+
type: string
|
|
3025
|
+
required: false #Hand-rolled
|
|
3026
|
+
AppExchangeAssetTopicsCollectionRepresentation:
|
|
3027
|
+
description: Represents an AppExchange asset topics collection
|
|
3028
|
+
type: object
|
|
3029
|
+
properties:
|
|
3030
|
+
listings:
|
|
3031
|
+
description: The map of listings keyed by listing ID
|
|
3032
|
+
type: object
|
|
3033
|
+
required: false #Hand-rolled
|
|
3034
|
+
properties:
|
|
3035
|
+
//:
|
|
3036
|
+
type: AppExchangeAssetListingRepresentation
|
|
3037
|
+
searchQueryId:
|
|
3038
|
+
description: The search query ID
|
|
3039
|
+
type: string
|
|
3040
|
+
required: false #Hand-rolled
|
|
3041
|
+
topics:
|
|
3042
|
+
description: The list of asset topics
|
|
3043
|
+
type: array
|
|
3044
|
+
required: false #Hand-rolled
|
|
3045
|
+
items:
|
|
3046
|
+
type: AppExchangeAssetTopicRepresentation
|
|
3047
|
+
totalCount:
|
|
3048
|
+
description: The total count of asset topics
|
|
3049
|
+
type: integer
|
|
3050
|
+
required: false #Hand-rolled
|
|
3051
|
+
AppExchangeAssetActionRepresentation:
|
|
3052
|
+
description: Represents an AppExchange asset action
|
|
3053
|
+
type: object
|
|
3054
|
+
properties:
|
|
3055
|
+
description:
|
|
3056
|
+
description: The description of the action
|
|
3057
|
+
type: string
|
|
3058
|
+
required: false #Hand-rolled
|
|
3059
|
+
id:
|
|
3060
|
+
description: The unique identifier of the action asset
|
|
3061
|
+
type: string
|
|
3062
|
+
required: false #Hand-rolled
|
|
3063
|
+
listingId:
|
|
3064
|
+
description: The listing ID associated with the action
|
|
3065
|
+
type: string
|
|
3066
|
+
required: false #Hand-rolled
|
|
3067
|
+
title:
|
|
3068
|
+
description: The title of the action
|
|
3069
|
+
type: string
|
|
3070
|
+
required: false #Hand-rolled
|
|
3071
|
+
AppExchangeAssetActionsCollectionRepresentation:
|
|
3072
|
+
description: Represents an AppExchange asset actions collection
|
|
3073
|
+
type: object
|
|
3074
|
+
properties:
|
|
3075
|
+
actions:
|
|
3076
|
+
description: The list of asset actions
|
|
3077
|
+
type: array
|
|
3078
|
+
required: false #Hand-rolled
|
|
3079
|
+
items:
|
|
3080
|
+
type: AppExchangeAssetActionRepresentation
|
|
3081
|
+
listings:
|
|
3082
|
+
description: The map of listings keyed by listing ID
|
|
3083
|
+
type: object
|
|
3084
|
+
required: false #Hand-rolled
|
|
3085
|
+
properties:
|
|
3086
|
+
//:
|
|
3087
|
+
type: AppExchangeAssetListingRepresentation
|
|
3088
|
+
searchQueryId:
|
|
3089
|
+
description: The search query ID
|
|
3090
|
+
type: string
|
|
3091
|
+
required: false #Hand-rolled
|
|
3092
|
+
totalCount:
|
|
3093
|
+
description: The total count of asset actions
|
|
3094
|
+
type: integer
|
|
3095
|
+
required: false #Hand-rolled
|
|
3096
|
+
AppExchangeActionInfoRepresentation:
|
|
3097
|
+
description: Represents an AppExchange action info
|
|
3098
|
+
type: object
|
|
3099
|
+
properties:
|
|
3100
|
+
description:
|
|
3101
|
+
description: The description of the action
|
|
3102
|
+
type: string
|
|
3103
|
+
required: false #Hand-rolled
|
|
3104
|
+
id:
|
|
3105
|
+
description: The unique identifier of the action
|
|
3106
|
+
type: string
|
|
3107
|
+
required: false #Hand-rolled
|
|
3108
|
+
name:
|
|
3109
|
+
description: The name of the action
|
|
3110
|
+
type: string
|
|
3111
|
+
required: false #Hand-rolled
|
|
3112
|
+
AppExchangeAgentInfoRepresentation:
|
|
3113
|
+
description: Represents an AppExchange agent info
|
|
3114
|
+
type: object
|
|
3115
|
+
properties:
|
|
3116
|
+
description:
|
|
3117
|
+
description: The description of the agent
|
|
3118
|
+
type: string
|
|
3119
|
+
required: false #Hand-rolled
|
|
3120
|
+
id:
|
|
3121
|
+
description: The unique identifier of the agent
|
|
3122
|
+
type: string
|
|
3123
|
+
required: false #Hand-rolled
|
|
3124
|
+
name:
|
|
3125
|
+
description: The name of the agent
|
|
3126
|
+
type: string
|
|
3127
|
+
required: false #Hand-rolled
|
|
3128
|
+
AppExchangeAssetNodeRepresentation:
|
|
3129
|
+
description: Represents an AppExchange asset node with hierarchical structure
|
|
3130
|
+
type: object
|
|
3131
|
+
properties:
|
|
3132
|
+
assetType:
|
|
3133
|
+
description: The type of the asset (agent, topic, action)
|
|
3134
|
+
type: string
|
|
3135
|
+
required: false #Hand-rolled
|
|
3136
|
+
children:
|
|
3137
|
+
description: The child assets
|
|
3138
|
+
type: array
|
|
3139
|
+
required: false #Hand-rolled
|
|
3140
|
+
items:
|
|
3141
|
+
type: AppExchangeAssetNodeRepresentation
|
|
3142
|
+
id:
|
|
3143
|
+
description: The unique identifier of the asset
|
|
3144
|
+
type: string
|
|
3145
|
+
required: false #Hand-rolled
|
|
3146
|
+
AppExchangeTopicInfoRepresentation:
|
|
3147
|
+
description: Represents an AppExchange topic info
|
|
3148
|
+
type: object
|
|
3149
|
+
properties:
|
|
3150
|
+
description:
|
|
3151
|
+
description: The description of the topic
|
|
3152
|
+
type: string
|
|
3153
|
+
required: false #Hand-rolled
|
|
3154
|
+
id:
|
|
3155
|
+
description: The unique identifier of the topic
|
|
3156
|
+
type: string
|
|
3157
|
+
required: false #Hand-rolled
|
|
3158
|
+
name:
|
|
3159
|
+
description: The name of the topic
|
|
3160
|
+
type: string
|
|
3161
|
+
required: false #Hand-rolled
|
|
3162
|
+
AppExchangeAssetListingDetailsRepresentation:
|
|
3163
|
+
description: Represents listing details for action/topic asset APIs
|
|
3164
|
+
type: object
|
|
3165
|
+
properties:
|
|
3166
|
+
actions:
|
|
3167
|
+
description: Map of actions keyed by action ID
|
|
3168
|
+
type: object
|
|
3169
|
+
required: false #Hand-rolled
|
|
3170
|
+
properties:
|
|
3171
|
+
//:
|
|
3172
|
+
type: AppExchangeActionInfoRepresentation
|
|
3173
|
+
agents:
|
|
3174
|
+
description: Map of agents keyed by agent ID
|
|
3175
|
+
type: object
|
|
3176
|
+
required: false #Hand-rolled
|
|
3177
|
+
properties:
|
|
3178
|
+
//:
|
|
3179
|
+
type: AppExchangeAgentInfoRepresentation
|
|
3180
|
+
assets:
|
|
3181
|
+
description: Hierarchical list of assets (agents -> topics -> actions)
|
|
3182
|
+
type: array
|
|
3183
|
+
required: false #Hand-rolled
|
|
3184
|
+
items:
|
|
3185
|
+
type: AppExchangeAssetNodeRepresentation
|
|
3186
|
+
description:
|
|
3187
|
+
description: The short description of the listing
|
|
3188
|
+
type: string
|
|
3189
|
+
required: false #Hand-rolled
|
|
3190
|
+
fullDescription:
|
|
3191
|
+
description: The full HTML description of the listing
|
|
3192
|
+
type: string
|
|
3193
|
+
required: false #Hand-rolled
|
|
3194
|
+
id:
|
|
3195
|
+
description: The unique identifier of the listing
|
|
3196
|
+
type: string
|
|
3197
|
+
required: false #Hand-rolled
|
|
3198
|
+
installPackagingPermission:
|
|
3199
|
+
description: Whether the user has install packaging permission
|
|
3200
|
+
type: boolean
|
|
3201
|
+
required: false #Hand-rolled
|
|
3202
|
+
installedPackage:
|
|
3203
|
+
description: The installed package version info
|
|
3204
|
+
type: AppExchangeInstalledPackageRepresentation
|
|
3205
|
+
required: false #Hand-rolled
|
|
3206
|
+
latestVersion:
|
|
3207
|
+
description: The latest package version info
|
|
3208
|
+
type: AppExchangeInstalledPackageRepresentation
|
|
3209
|
+
required: false #Hand-rolled
|
|
3210
|
+
logoUrl:
|
|
3211
|
+
description: The logo URL
|
|
3212
|
+
type: string
|
|
3213
|
+
required: false #Hand-rolled
|
|
3214
|
+
name:
|
|
3215
|
+
description: The name of the listing
|
|
3216
|
+
type: string
|
|
3217
|
+
required: false #Hand-rolled
|
|
3218
|
+
packageVersionId:
|
|
3219
|
+
description: Package version id
|
|
3220
|
+
type: string
|
|
3221
|
+
required: false #Hand-rolled
|
|
3222
|
+
pricing:
|
|
3223
|
+
description: The pricing information
|
|
3224
|
+
type: AppExchangePricingRepresentation
|
|
3225
|
+
required: false #Hand-rolled
|
|
3226
|
+
publisher:
|
|
3227
|
+
description: The publisher of the listing
|
|
3228
|
+
type: AppExchangePublisherRepresentation
|
|
3229
|
+
required: false #Hand-rolled
|
|
3230
|
+
reviewsSummary:
|
|
3231
|
+
description: The reviews summary
|
|
3232
|
+
type: AppExchangeListingReviewsSummaryRepresentation
|
|
3233
|
+
required: false #Hand-rolled
|
|
3234
|
+
searchBlurb:
|
|
3235
|
+
description: The search blurb of the listing
|
|
3236
|
+
type: string
|
|
3237
|
+
required: false #Hand-rolled
|
|
3238
|
+
title:
|
|
3239
|
+
description: The title of the listing
|
|
3240
|
+
type: string
|
|
3241
|
+
required: false #Hand-rolled
|
|
3242
|
+
topics:
|
|
3243
|
+
description: Map of topics keyed by topic ID
|
|
3244
|
+
type: object
|
|
3245
|
+
required: false #Hand-rolled
|
|
3246
|
+
properties:
|
|
3247
|
+
//:
|
|
3248
|
+
type: AppExchangeTopicInfoRepresentation
|
|
3249
|
+
AppExchangeTopicDetailsRepresentation:
|
|
3250
|
+
description: Represents an AppExchange topic details
|
|
3251
|
+
type: object
|
|
3252
|
+
properties:
|
|
3253
|
+
actions:
|
|
3254
|
+
description: List of action IDs that belong to this topic
|
|
3255
|
+
type: array
|
|
3256
|
+
required: false #Hand-rolled
|
|
3257
|
+
items:
|
|
3258
|
+
type: string
|
|
3259
|
+
description:
|
|
3260
|
+
description: The description of the topic
|
|
3261
|
+
type: string
|
|
3262
|
+
required: false #Hand-rolled
|
|
3263
|
+
id:
|
|
3264
|
+
description: The unique identifier of the topic asset
|
|
3265
|
+
type: string
|
|
3266
|
+
required: false #Hand-rolled
|
|
3267
|
+
listingDetails:
|
|
3268
|
+
description: The listing details containing this topic
|
|
3269
|
+
type: AppExchangeAssetListingDetailsRepresentation
|
|
3270
|
+
required: false #Hand-rolled
|
|
3271
|
+
name:
|
|
3272
|
+
description: The name of the topic
|
|
3273
|
+
type: string
|
|
3274
|
+
required: false #Hand-rolled
|
|
3275
|
+
AppExchangeActionDetailsRepresentation:
|
|
3276
|
+
description: Represents an AppExchange action details
|
|
3277
|
+
type: object
|
|
3278
|
+
properties:
|
|
3279
|
+
description:
|
|
3280
|
+
description: The description of the action
|
|
3281
|
+
type: string
|
|
3282
|
+
required: false #Hand-rolled
|
|
3283
|
+
id:
|
|
3284
|
+
description: The unique identifier of the action
|
|
3285
|
+
type: string
|
|
3286
|
+
required: false #Hand-rolled
|
|
3287
|
+
listingDetails:
|
|
3288
|
+
description: The listing details containing this action
|
|
3289
|
+
type: AppExchangeAssetListingDetailsRepresentation
|
|
3290
|
+
required: false #Hand-rolled
|
|
3291
|
+
name:
|
|
3292
|
+
description: The name of the action
|
|
3293
|
+
type: string
|
|
3294
|
+
required: false #Hand-rolled
|
|
3295
|
+
relatedTopics:
|
|
3296
|
+
description: List of related topic IDs that contain this action
|
|
3297
|
+
type: array
|
|
3298
|
+
required: false #Hand-rolled
|
|
3299
|
+
items:
|
|
3300
|
+
type: string
|
|
2986
3301
|
/connect/appexchange:
|
|
3302
|
+
/assets:
|
|
3303
|
+
/actions:
|
|
3304
|
+
get:
|
|
3305
|
+
displayName: getAppExchangeAssetActions
|
|
3306
|
+
description: Get AppExchange asset actions
|
|
3307
|
+
responses:
|
|
3308
|
+
'200':
|
|
3309
|
+
description: Success
|
|
3310
|
+
body:
|
|
3311
|
+
application/json:
|
|
3312
|
+
type: AppExchangeAssetActionsCollectionRepresentation
|
|
3313
|
+
queryParameters:
|
|
3314
|
+
category:
|
|
3315
|
+
type: array
|
|
3316
|
+
required: false
|
|
3317
|
+
items:
|
|
3318
|
+
type: string
|
|
3319
|
+
enum:
|
|
3320
|
+
- AccountBasedMarketing
|
|
3321
|
+
- Accounting
|
|
3322
|
+
- AdminAndDeveloperTools
|
|
3323
|
+
- AgentProductivity
|
|
3324
|
+
- Alerts
|
|
3325
|
+
- Analytics
|
|
3326
|
+
- AnalyticsAndSiteMonitoring
|
|
3327
|
+
- AuditAndCompliance
|
|
3328
|
+
- AugmentedRealityAndVirtualReality
|
|
3329
|
+
- CampaignManagement
|
|
3330
|
+
- CaseManagement
|
|
3331
|
+
- ChatAndWebConferencing
|
|
3332
|
+
- Collaboration
|
|
3333
|
+
- Commerce
|
|
3334
|
+
- CompensationManagement
|
|
3335
|
+
- ContentDeliveryNetwork
|
|
3336
|
+
- ContentManagementSystem
|
|
3337
|
+
- ContractManagement
|
|
3338
|
+
- ConversationalCommerce
|
|
3339
|
+
- CustomerService
|
|
3340
|
+
- DashboardsAndReports
|
|
3341
|
+
- DataBackupAndStorage
|
|
3342
|
+
- DataCleansing
|
|
3343
|
+
- DataManagement
|
|
3344
|
+
- DataMigration
|
|
3345
|
+
- DataVisualization
|
|
3346
|
+
- DeveloperTools
|
|
3347
|
+
- DocumentGeneration
|
|
3348
|
+
- DocumentManagement
|
|
3349
|
+
- Ecommerce
|
|
3350
|
+
- EmailAndCalendarSync
|
|
3351
|
+
- EnterpriseResourcePlanning
|
|
3352
|
+
- EventManagement
|
|
3353
|
+
- Feeds
|
|
3354
|
+
- FieldService
|
|
3355
|
+
- Finance
|
|
3356
|
+
- Forecasting
|
|
3357
|
+
- Geolocation
|
|
3358
|
+
- GrantManagement
|
|
3359
|
+
- HumanResources
|
|
3360
|
+
- InformationManagement
|
|
3361
|
+
- Integration
|
|
3362
|
+
- ItAndAdministration
|
|
3363
|
+
- ItManagement
|
|
3364
|
+
- LeadAndOpportunityManagement
|
|
3365
|
+
- LiveCommerce
|
|
3366
|
+
- Loyalty
|
|
3367
|
+
- Marketing
|
|
3368
|
+
- MarketingAndIntelligence
|
|
3369
|
+
- MarketingAutomation
|
|
3370
|
+
- Marketplace
|
|
3371
|
+
- MassEmailsAndMessaging
|
|
3372
|
+
- OrderAndInventoryManagement
|
|
3373
|
+
- PartnerManagement
|
|
3374
|
+
- PaymentsProcessing
|
|
3375
|
+
- PeopleManagement
|
|
3376
|
+
- Personalization
|
|
3377
|
+
- PointOfSaleAndInStore
|
|
3378
|
+
- ProcessManagement
|
|
3379
|
+
- ProductInformationManagement
|
|
3380
|
+
- Productivity
|
|
3381
|
+
- ProjectManagement
|
|
3382
|
+
- PunchoutSystem
|
|
3383
|
+
- QuotesAndOrders
|
|
3384
|
+
- RatingsAndReviews
|
|
3385
|
+
- RoutePlanning
|
|
3386
|
+
- Sales
|
|
3387
|
+
- SalesIntelligence
|
|
3388
|
+
- SalesMethodologies
|
|
3389
|
+
- SalesProductivity
|
|
3390
|
+
- SearchAndRecommendation
|
|
3391
|
+
- Security
|
|
3392
|
+
- ShippingFulfillmentAndLogistics
|
|
3393
|
+
- SocialChannels
|
|
3394
|
+
- Subscriptions
|
|
3395
|
+
- Surveys
|
|
3396
|
+
- Telephony
|
|
3397
|
+
- TestingAndSegmentation
|
|
3398
|
+
- TimeAndDate
|
|
3399
|
+
- TimeAndExpense
|
|
3400
|
+
- Translation
|
|
3401
|
+
- WarehouseManagementSystem
|
|
3402
|
+
- WarrantyAndReturnsManagement
|
|
3403
|
+
- Websites
|
|
3404
|
+
(oas-collectionFormat): csv
|
|
3405
|
+
industry:
|
|
3406
|
+
type: array
|
|
3407
|
+
required: false
|
|
3408
|
+
items:
|
|
3409
|
+
type: string
|
|
3410
|
+
enum:
|
|
3411
|
+
- AgricultureMining
|
|
3412
|
+
- Automotive
|
|
3413
|
+
- Communications
|
|
3414
|
+
- ConsumerGoods
|
|
3415
|
+
- Education
|
|
3416
|
+
- Energy
|
|
3417
|
+
- EngineeringConstructionRealEstate
|
|
3418
|
+
- FinancialServices
|
|
3419
|
+
- Government
|
|
3420
|
+
- HealthcareLifeSciences
|
|
3421
|
+
- HighTech
|
|
3422
|
+
- HorizontalProduct
|
|
3423
|
+
- Manufacturing
|
|
3424
|
+
- MediaEntertainment
|
|
3425
|
+
- Nonprofit
|
|
3426
|
+
- ProfessionalServices
|
|
3427
|
+
- PublicSector
|
|
3428
|
+
- Retail
|
|
3429
|
+
- TravelTransportationAndHospitality
|
|
3430
|
+
(oas-collectionFormat): csv
|
|
3431
|
+
keyword:
|
|
3432
|
+
type: string
|
|
3433
|
+
required: false
|
|
3434
|
+
labs:
|
|
3435
|
+
type: array
|
|
3436
|
+
required: false
|
|
3437
|
+
items:
|
|
3438
|
+
type: string
|
|
3439
|
+
enum:
|
|
3440
|
+
- SalesforceLabs
|
|
3441
|
+
(oas-collectionFormat): csv
|
|
3442
|
+
language:
|
|
3443
|
+
type: string
|
|
3444
|
+
required: false
|
|
3445
|
+
enum:
|
|
3446
|
+
- En
|
|
3447
|
+
- Ja
|
|
3448
|
+
page:
|
|
3449
|
+
type: integer
|
|
3450
|
+
required: false
|
|
3451
|
+
pageSize:
|
|
3452
|
+
type: integer
|
|
3453
|
+
required: false
|
|
3454
|
+
prevSearchQueryId:
|
|
3455
|
+
type: string
|
|
3456
|
+
required: false
|
|
3457
|
+
searchQueryId:
|
|
3458
|
+
type: string
|
|
3459
|
+
required: false
|
|
3460
|
+
sort:
|
|
3461
|
+
type: string
|
|
3462
|
+
required: false
|
|
3463
|
+
enum:
|
|
3464
|
+
- AssetName
|
|
3465
|
+
- ReleaseDate
|
|
3466
|
+
- Relevance
|
|
3467
|
+
/listings/{listingId}:
|
|
3468
|
+
/actions/{actionId}:
|
|
3469
|
+
get:
|
|
3470
|
+
displayName: getAppExchangeActionDetails
|
|
3471
|
+
description: Get AppExchange action details
|
|
3472
|
+
responses:
|
|
3473
|
+
'200':
|
|
3474
|
+
description: Success
|
|
3475
|
+
body:
|
|
3476
|
+
application/json:
|
|
3477
|
+
type: AppExchangeActionDetailsRepresentation
|
|
3478
|
+
uriParameters:
|
|
3479
|
+
actionId:
|
|
3480
|
+
type: string
|
|
3481
|
+
required: true
|
|
3482
|
+
listingId:
|
|
3483
|
+
type: string
|
|
3484
|
+
required: true
|
|
3485
|
+
/topics/{topicId}:
|
|
3486
|
+
get:
|
|
3487
|
+
displayName: getAppExchangeTopicDetails
|
|
3488
|
+
description: Get AppExchange topic details
|
|
3489
|
+
responses:
|
|
3490
|
+
'200':
|
|
3491
|
+
description: Success
|
|
3492
|
+
body:
|
|
3493
|
+
application/json:
|
|
3494
|
+
type: AppExchangeTopicDetailsRepresentation
|
|
3495
|
+
uriParameters:
|
|
3496
|
+
listingId:
|
|
3497
|
+
type: string
|
|
3498
|
+
required: true
|
|
3499
|
+
topicId:
|
|
3500
|
+
type: string
|
|
3501
|
+
required: true
|
|
3502
|
+
/topics:
|
|
3503
|
+
get:
|
|
3504
|
+
displayName: getAppExchangeAssetTopics
|
|
3505
|
+
description: Get AppExchange asset topics
|
|
3506
|
+
responses:
|
|
3507
|
+
'200':
|
|
3508
|
+
description: Success
|
|
3509
|
+
body:
|
|
3510
|
+
application/json:
|
|
3511
|
+
type: AppExchangeAssetTopicsCollectionRepresentation
|
|
3512
|
+
queryParameters:
|
|
3513
|
+
category:
|
|
3514
|
+
type: array
|
|
3515
|
+
required: false
|
|
3516
|
+
items:
|
|
3517
|
+
type: string
|
|
3518
|
+
enum:
|
|
3519
|
+
- AccountBasedMarketing
|
|
3520
|
+
- Accounting
|
|
3521
|
+
- AdminAndDeveloperTools
|
|
3522
|
+
- AgentProductivity
|
|
3523
|
+
- Alerts
|
|
3524
|
+
- Analytics
|
|
3525
|
+
- AnalyticsAndSiteMonitoring
|
|
3526
|
+
- AuditAndCompliance
|
|
3527
|
+
- AugmentedRealityAndVirtualReality
|
|
3528
|
+
- CampaignManagement
|
|
3529
|
+
- CaseManagement
|
|
3530
|
+
- ChatAndWebConferencing
|
|
3531
|
+
- Collaboration
|
|
3532
|
+
- Commerce
|
|
3533
|
+
- CompensationManagement
|
|
3534
|
+
- ContentDeliveryNetwork
|
|
3535
|
+
- ContentManagementSystem
|
|
3536
|
+
- ContractManagement
|
|
3537
|
+
- ConversationalCommerce
|
|
3538
|
+
- CustomerService
|
|
3539
|
+
- DashboardsAndReports
|
|
3540
|
+
- DataBackupAndStorage
|
|
3541
|
+
- DataCleansing
|
|
3542
|
+
- DataManagement
|
|
3543
|
+
- DataMigration
|
|
3544
|
+
- DataVisualization
|
|
3545
|
+
- DeveloperTools
|
|
3546
|
+
- DocumentGeneration
|
|
3547
|
+
- DocumentManagement
|
|
3548
|
+
- Ecommerce
|
|
3549
|
+
- EmailAndCalendarSync
|
|
3550
|
+
- EnterpriseResourcePlanning
|
|
3551
|
+
- EventManagement
|
|
3552
|
+
- Feeds
|
|
3553
|
+
- FieldService
|
|
3554
|
+
- Finance
|
|
3555
|
+
- Forecasting
|
|
3556
|
+
- Geolocation
|
|
3557
|
+
- GrantManagement
|
|
3558
|
+
- HumanResources
|
|
3559
|
+
- InformationManagement
|
|
3560
|
+
- Integration
|
|
3561
|
+
- ItAndAdministration
|
|
3562
|
+
- ItManagement
|
|
3563
|
+
- LeadAndOpportunityManagement
|
|
3564
|
+
- LiveCommerce
|
|
3565
|
+
- Loyalty
|
|
3566
|
+
- Marketing
|
|
3567
|
+
- MarketingAndIntelligence
|
|
3568
|
+
- MarketingAutomation
|
|
3569
|
+
- Marketplace
|
|
3570
|
+
- MassEmailsAndMessaging
|
|
3571
|
+
- OrderAndInventoryManagement
|
|
3572
|
+
- PartnerManagement
|
|
3573
|
+
- PaymentsProcessing
|
|
3574
|
+
- PeopleManagement
|
|
3575
|
+
- Personalization
|
|
3576
|
+
- PointOfSaleAndInStore
|
|
3577
|
+
- ProcessManagement
|
|
3578
|
+
- ProductInformationManagement
|
|
3579
|
+
- Productivity
|
|
3580
|
+
- ProjectManagement
|
|
3581
|
+
- PunchoutSystem
|
|
3582
|
+
- QuotesAndOrders
|
|
3583
|
+
- RatingsAndReviews
|
|
3584
|
+
- RoutePlanning
|
|
3585
|
+
- Sales
|
|
3586
|
+
- SalesIntelligence
|
|
3587
|
+
- SalesMethodologies
|
|
3588
|
+
- SalesProductivity
|
|
3589
|
+
- SearchAndRecommendation
|
|
3590
|
+
- Security
|
|
3591
|
+
- ShippingFulfillmentAndLogistics
|
|
3592
|
+
- SocialChannels
|
|
3593
|
+
- Subscriptions
|
|
3594
|
+
- Surveys
|
|
3595
|
+
- Telephony
|
|
3596
|
+
- TestingAndSegmentation
|
|
3597
|
+
- TimeAndDate
|
|
3598
|
+
- TimeAndExpense
|
|
3599
|
+
- Translation
|
|
3600
|
+
- WarehouseManagementSystem
|
|
3601
|
+
- WarrantyAndReturnsManagement
|
|
3602
|
+
- Websites
|
|
3603
|
+
(oas-collectionFormat): csv
|
|
3604
|
+
industry:
|
|
3605
|
+
type: array
|
|
3606
|
+
required: false
|
|
3607
|
+
items:
|
|
3608
|
+
type: string
|
|
3609
|
+
enum:
|
|
3610
|
+
- AgricultureMining
|
|
3611
|
+
- Automotive
|
|
3612
|
+
- Communications
|
|
3613
|
+
- ConsumerGoods
|
|
3614
|
+
- Education
|
|
3615
|
+
- Energy
|
|
3616
|
+
- EngineeringConstructionRealEstate
|
|
3617
|
+
- FinancialServices
|
|
3618
|
+
- Government
|
|
3619
|
+
- HealthcareLifeSciences
|
|
3620
|
+
- HighTech
|
|
3621
|
+
- HorizontalProduct
|
|
3622
|
+
- Manufacturing
|
|
3623
|
+
- MediaEntertainment
|
|
3624
|
+
- Nonprofit
|
|
3625
|
+
- ProfessionalServices
|
|
3626
|
+
- PublicSector
|
|
3627
|
+
- Retail
|
|
3628
|
+
- TravelTransportationAndHospitality
|
|
3629
|
+
(oas-collectionFormat): csv
|
|
3630
|
+
keyword:
|
|
3631
|
+
type: string
|
|
3632
|
+
required: false
|
|
3633
|
+
labs:
|
|
3634
|
+
type: array
|
|
3635
|
+
required: false
|
|
3636
|
+
items:
|
|
3637
|
+
type: string
|
|
3638
|
+
enum:
|
|
3639
|
+
- SalesforceLabs
|
|
3640
|
+
(oas-collectionFormat): csv
|
|
3641
|
+
language:
|
|
3642
|
+
type: string
|
|
3643
|
+
required: false
|
|
3644
|
+
enum:
|
|
3645
|
+
- En
|
|
3646
|
+
- Ja
|
|
3647
|
+
page:
|
|
3648
|
+
type: integer
|
|
3649
|
+
required: false
|
|
3650
|
+
pageSize:
|
|
3651
|
+
type: integer
|
|
3652
|
+
required: false
|
|
3653
|
+
prevSearchQueryId:
|
|
3654
|
+
type: string
|
|
3655
|
+
required: false
|
|
3656
|
+
searchQueryId:
|
|
3657
|
+
type: string
|
|
3658
|
+
required: false
|
|
3659
|
+
sort:
|
|
3660
|
+
type: string
|
|
3661
|
+
required: false
|
|
3662
|
+
enum:
|
|
3663
|
+
- AssetName
|
|
3664
|
+
- ReleaseDate
|
|
3665
|
+
- Relevance
|
|
2987
3666
|
/listings/{listingId}:
|
|
2988
3667
|
get:
|
|
2989
3668
|
displayName: getAppExchangeListingDetails
|