Skip to main content
POST
/
external
/
profile-matching
/
actions
/
apply-recommended-events
/
paged
Apply profile and get recommended events
curl --request POST \
  --url https://platform.lensmor.com/external/profile-matching/actions/apply-recommended-events/paged \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "company_url": "<string>",
  "target_audience": "<string>",
  "page": 1,
  "pageSize": 20,
  "autoRecommendTop3EventsEnabled": true,
  "city": "<string>",
  "region": "<string>",
  "country": "<string>",
  "category": [
    "<string>"
  ],
  "eventTypeIds": [
    123
  ],
  "dateStartFrom": "2023-12-25",
  "dateStartTo": "2023-12-25",
  "future": 123,
  "attendeeCountMin": 1,
  "attendeeCountMax": 1
}
'
{
  "items": [
    {
      "id": "<string>",
      "eventId": "<string>",
      "name": "<string>",
      "nickname": "<string>",
      "description": "<string>",
      "url": "<string>",
      "dateStart": "2023-12-25",
      "dateEnd": "2023-12-25",
      "venue": "<string>",
      "city": "<string>",
      "region": "<string>",
      "country": "<string>",
      "exhibitorCount": 123,
      "image": "<string>",
      "dataSource": "<string>"
    }
  ],
  "total": 123,
  "page": 123,
  "pageSize": 123,
  "totalPages": 123,
  "hasMore": true,
  "status": "<string>",
  "condition_tags": {},
  "profile_version": 123,
  "active_result_version": 123,
  "is_stale": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
company_url
string<uri>
required
target_audience
string
page
integer
default:1
Required range: x >= 1
pageSize
integer
default:20
Required range: 1 <= x <= 100
autoRecommendTop3EventsEnabled
boolean
city
string
region
string
country
string
category
string[]
eventTypeIds
integer[]
dateStartFrom
string<date>
dateStartTo
string<date>
future
integer
attendeeCountMin
integer
Required range: x >= 0
attendeeCountMax
integer
Required range: x >= 0

Response

Recommended events

items
object[]
required
total
integer
required
page
integer
required
pageSize
integer
required
totalPages
integer
required
hasMore
boolean
required
status
string
condition_tags
object
profile_version
integer | null
active_result_version
integer | null
is_stale
boolean