restrictions_showPermission, Token Scope, Not has Restriction, you can restrict any object.restrictions_create_for_my_descendantsPermission, Token Scope, Not has Restriction, you can restrict your descendants or object owned by you or your descendantsAuthorization: Bearer ********************curl --location --request POST 'https://api.temlittoral.com/api/v1/restrictions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--data-urlencode 'title=Test restrict' \
--data-urlencode 'description=Test restrict transaction' \
--data-urlencode 'restrictable_type=user' \
--data-urlencode 'restrictable_id=2' \
--data-urlencode 'permissions[]=transactions_see_all' \
--data-urlencode 'permissions[]=transactions_index'{
"id": 4,
"title": "Test restrict",
"description": "Test restrict transaction",
"batch": null,
"restrictable_type": "App\\Models\\User",
"restrictable_id": 2
}