- Back to home
- Core
- Authentication
- User
- Point Reward
- Notification
- HealthcheckGET
- Renew OTPPOST
Update My Consent Version V1
Developing
PUT
/core/v1/users/consent/me
Last modified:2025-03-28 17:07:49
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
isAccept
boolean
required
version
string
required
Example
{
"isAccept": true,
"version": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/core/v1/users/consent/me' \
--header 'Content-Type: application/json' \
--data-raw '{
"isAccept": true,
"version": "string"
}'
Responses
🟢200OK
application/json
Body
status
string
required
message
string
required
version
string
required
Example
{
"status": "string",
"message": "string",
"version": "string"
}