mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
27 lines
645 B
YAML
27 lines
645 B
YAML
post:
|
|
description: Check if a hash is valid for a given string.
|
|
operationId: checkHash
|
|
requestBody:
|
|
content:
|
|
application/json:
|
|
schema:
|
|
properties:
|
|
hash:
|
|
description: The hash you want to verify.
|
|
type: string
|
|
string:
|
|
description: String you want to hash.
|
|
type: string
|
|
type: object
|
|
responses:
|
|
'200':
|
|
description: Successful request
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
properties:
|
|
data:
|
|
type: boolean
|
|
tags:
|
|
- Utilities |