Skip to content

Commit 8f82370

Browse files
committed
docs: add new signed URL fields to dataset & key-value store
1 parent 3f9d79f commit 8f82370

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

apify-api/openapi/components/schemas/datasets/Dataset.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,11 @@ properties:
6969
consoleUrl:
7070
type: string
7171
example: 'https://console.apify.com/storage/datasets/27TmTznX9YPeAYhkC'
72+
itemsPublicUrl:
73+
type: string
74+
example: 'https://api.apify.com/v2/datasets/WkzbQMuFYuamGv3YF/items?signature=abc123'
75+
urlSigningSecretKey:
76+
type: string
77+
nullable: true
7278
stats:
7379
$ref: ./DatasetStats.yaml

apify-api/openapi/components/schemas/key-value-stores/KeyValueStore.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ required:
66
- modifiedAt
77
- accessedAt
88
- consoleUrl
9+
- keysPublicUrl
910
type: object
1011
properties:
1112
id:
@@ -42,5 +43,11 @@ properties:
4243
consoleUrl:
4344
type: string
4445
example: 'https://console.apify.com/storage/key-value-stores/27TmTznX9YPeAYhkC'
46+
keysPublicUrl:
47+
type: string
48+
example: 'https://api.apify.com/v2/key-value-stores/WkzbQMuFYuamGv3YF/keys?signature=abc123'
49+
urlSigningSecretKey:
50+
type: string
51+
nullable: true
4552
stats:
4653
$ref: ./KeyValueStoreStats.yaml

apify-api/openapi/components/schemas/key-value-stores/ListOfKeysResponse.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,17 @@ properties:
1414
required:
1515
- key
1616
- size
17+
- recordPublicUrl
1718
properties:
1819
key:
1920
type: string
2021
example: second-key
2122
size:
2223
type: number
2324
example: 36
25+
recordPublicUrl:
26+
type: string
27+
example: 'https://api.apify.com/v2/key-value-stores/WkzbQMuFYuamGv3YF/records/some-key?signature=abc123'
2428
description: ''
2529
count:
2630
type: number

0 commit comments

Comments
 (0)