diff --git a/schemas/fingerprint-server-api-for-sdks.yaml b/schemas/fingerprint-server-api-for-sdks.yaml index 8b56e3f..fcf32da 100644 --- a/schemas/fingerprint-server-api-for-sdks.yaml +++ b/schemas/fingerprint-server-api-for-sdks.yaml @@ -11,16 +11,16 @@ info: tags: - name: Events description: | - Using the Server API you can retrieve information about individual analysis events using the event's `requestId`. + Retrieve or update information about individual events using the event's request ID. + - name: Event Search + description: | + Search for events matching one or more filters. - name: Visitors description: | - Using the Server API you can retrieve visitor history of individual visitors using their `visitorId`. + Retrieve all events of an individual visitor using their visitor ID. - name: Related Visitors description: | Find visitor IDs that originated from a different browser on the same mobile device. - - name: Event Search - description: | - Using the Server API you can search for events matching one or more filters. servers: - url: https://api.fpjs.io description: Global @@ -34,14 +34,14 @@ security: paths: /events/{request_id}: $ref: 'paths/events.yaml' + /events/search: + $ref: 'paths/event-search.yaml' /visitors/{visitor_id}: $ref: 'paths/visitors.yaml' - /webhook: - $ref: 'paths/webhook.yaml' /related-visitors: $ref: './paths/related-visitors.yaml' - /events/search: - $ref: 'paths/event-search.yaml' + /webhook: + $ref: 'paths/webhook.yaml' components: securitySchemes: ApiKeyHeader: diff --git a/schemas/fingerprint-server-api-readme-explorer.yaml b/schemas/fingerprint-server-api-readme-explorer.yaml index 730e026..7311981 100644 --- a/schemas/fingerprint-server-api-readme-explorer.yaml +++ b/schemas/fingerprint-server-api-readme-explorer.yaml @@ -11,10 +11,13 @@ info: tags: - name: Events description: | - Using the Server API you can retrieve information about individual analysis events using the event's `requestId`. + Retrieve or update information about individual events using the event's `requestId`. + - name: Event Search + description: | + Search for events matching one or more filters. - name: Visitors description: | - Using the Server API you can retrieve visitor history of individual visitors using their `visitorId`. + Retrieve all events of an individual visitor using their `visitorId`. servers: - url: https://api.fpjs.io description: Global