@@ -185,12 +185,18 @@ paths:
185185 description : The ID of the actor whose ID-Cert(s) should be returned.
186186 schema :
187187 type : string
188- - name : timestamp
188+ - name : notBefore
189189 in : query
190190 required : false
191- description : |-
192- An optional UNIX timestamp to retrieve the ID-Cert the actor had at that
193- point in time, instead of the current one.
191+ description : ' : Return only ID-Certs from at or after a specific point in time. UNIX 64 bit timestamp.'
192+ schema :
193+ type : integer
194+ format : uint64
195+ explode : false
196+ - name : notAfter
197+ in : query
198+ required : false
199+ description : ' : Return only ID-Certs from at or before a specific point in time. UNIX 64 bit timestamp.'
194200 schema :
195201 type : integer
196202 format : uint64
@@ -254,7 +260,7 @@ paths:
254260 - Federated Identity - Registration not required
255261 /.p2/core/v1/key/server :
256262 post :
257- operationId : Unregistered_name
263+ operationId : Registered_name
258264 summary : Rotate Server Identity Key
259265 description : Rotate the server's identity key. Requires server administrator permissions.
260266 parameters :
@@ -272,7 +278,7 @@ paths:
272278 schema :
273279 type : string
274280 tags :
275- - Federated Identity - Registration not required
281+ - Federated Identity - Registration required
276282 - Sensitive Actions
277283 security :
278284 - BearerAuth : []
@@ -372,16 +378,41 @@ paths:
372378 - name : fid
373379 in : path
374380 required : true
381+ description : ' : The FID of the actor to query key trials for.'
375382 schema :
376383 type : string
377384 - name : limit
378385 in : query
379386 required : false
387+ description : ' : How many response objects to query for at maximum. A value of `0` or not specifying this value at all means no maximum is defined.'
380388 schema :
381389 type : integer
382390 format : uint16
383391 default : 0
384392 explode : false
393+ - name : id
394+ in : query
395+ required : false
396+ description : ' : Query for a specific key trial performed by an actor by the ID of the key trial.'
397+ schema :
398+ type : string
399+ explode : false
400+ - name : notBefore
401+ in : query
402+ required : false
403+ description : ' : Return only key trials and their results performed at or after a specific point in time. UNIX 64 bit timestamp.'
404+ schema :
405+ type : integer
406+ format : uint64
407+ explode : false
408+ - name : notAfter
409+ in : query
410+ required : false
411+ description : ' : Return only key trials and their results performed at or before a specific point in time. UNIX 64 bit timestamp.'
412+ schema :
413+ type : integer
414+ format : uint64
415+ explode : false
385416 responses :
386417 ' 200 ' :
387418 description : |-
@@ -1513,6 +1544,13 @@ paths:
15131544 $ref : ' #/components/schemas/polyproto.core.models.EncryptedPKM'
15141545 ' 204 ' :
15151546 description : ' There is no content to send for this request, but the headers may be useful. '
1547+ headers :
1548+ Content-Length :
1549+ required : true
1550+ schema :
1551+ type : number
1552+ enum :
1553+ - 0
15161554 ' 404 ' :
15171555 description : The server cannot find the requested resource.
15181556 tags :
@@ -1544,6 +1582,13 @@ paths:
15441582 responses :
15451583 ' 204 ' :
15461584 description : ' There is no content to send for this request, but the headers may be useful. '
1585+ headers :
1586+ Content-Length :
1587+ required : true
1588+ schema :
1589+ type : number
1590+ enum :
1591+ - 0
15471592 ' 404 ' :
15481593 description : The server cannot find the requested resource.
15491594 tags :
0 commit comments