Skip to content

Commit

Permalink
feat(API): Improve clientKey description
Browse files Browse the repository at this point in the history
  • Loading branch information
drobnikj committed Dec 9, 2024
1 parent c0177f8 commit 07c64ab
Showing 1 changed file with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,9 @@ put:
in: query
description: |
A unique identifier of the client accessing the request queue. It must
be a string between 1 and 32 characters long. This identifier is used to
ensure one client is not to able delete or prolong
a request from another client.
be a string between 1 and 32 characters long. This identifier is used to for locking
and unlocking requests. You can lock and unlock only requests that were locked by by same
client key or from the same Actor run.
style: form
explode: true
schema:
Expand Down Expand Up @@ -121,11 +120,10 @@ delete:
- name: clientKey
in: query
description: |
A unique identifier of the client accessing the request queue. It must
be a string between 1 and 32 characters long. This identifier is used to
ensure one client is not to able delete or prolong
a request from another client.
A unique identifier of the client accessing the request queue. It must
be a string between 1 and 32 characters long. This identifier is used to for locking
and unlocking requests. You can delete or prolong lock only for requests that were locked by by same
client key or from the same Actor run.
style: form
explode: true
schema:
Expand Down

0 comments on commit 07c64ab

Please sign in to comment.