curl --request POST \
--url https://api.velt.dev/v2/auth/generate_signature \
--header 'Content-Type: application/json' \
--header 'x-velt-api-key: <x-velt-api-key>' \
--header 'x-velt-auth-token: <x-velt-auth-token>' \
--data '
{
"data": {
"permissions": [
{
"userId": "<string>",
"resourceId": "<string>",
"type": "<string>",
"hasAccess": true,
"accessRole": "<string>",
"expiresAt": 123
}
]
}
}
'