Users
OAuth: This endpoint requires one of the following scopes:
user:manage
, user:read
or user:write
.Warning: Only OAuth Apps with the
user:email
scope will be able to access the authenticated user's private email address.get
https://api.textmaster.com
/v1/clients/users/me
Retrieve my information
curl -G "https://api.textmaster.com/v1/clients/users/me" \
-H "Authorization: Bearer c6446be4ac320b1a5dd746a349ac0f750e4867ea7fa474092dfde404c1dfb64b"
OAuth: This endpoint requires one of the following scopes:
user:manage
or user:write
.put
https://api.textmaster.com
/v1/clients/users/{user_id}
Update my callback information
curl "https://api.textmaster.com/v1/clients/users/61698aff8b81926d91c0f72c" \
-X PUT \
-d '{
"user": {
"callback": {
"waiting_assignment": {
"url": "https://example.com/waiting_assignment_callback",
"format": "json"
},
"completed": {
"url": "https://example.com/completed_callback",
"format": "json"
}
}
}
}' \
-H "Authorization: Bearer ac343d393b0041cb8f73b92010a09a543f55605b7877bff63ae359dcd103ad4a" \
-H "Content-Type: application/json"
Last modified 1yr ago