Skip to content

Commit

Permalink
chore: fix and simplify tags
Browse files Browse the repository at this point in the history
  • Loading branch information
JuroUhlar committed Nov 18, 2024
1 parent 551dec4 commit 0b91af7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
18 changes: 9 additions & 9 deletions schemas/fingerprint-server-api-for-sdks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
7 changes: 5 additions & 2 deletions schemas/fingerprint-server-api-readme-explorer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0b91af7

Please sign in to comment.