File tree Expand file tree Collapse file tree 7 files changed +90
-4
lines changed
Expand file tree Collapse file tree 7 files changed +90
-4
lines changed Original file line number Diff line number Diff line change 1+ description : Accepted.
2+ content :
3+ application/json :
4+ schema :
5+ title : acceptedResponse
6+ type : object
7+ additionalProperties : false
8+ required :
9+ - status
10+ - message
11+ properties :
12+ status :
13+ type : integer
14+ example : 202
15+ description : Status code.
16+ message :
17+ type : string
18+ example : Accepted
19+ description : Response message.
Original file line number Diff line number Diff line change 1+ description : Conflict.
2+ content :
3+ application/json :
4+ schema :
5+ title : conflictResponse
6+ type : object
7+ additionalProperties : false
8+ required :
9+ - status
10+ - message
11+ properties :
12+ status :
13+ type : integer
14+ example : 409
15+ description : Status code.
16+ message :
17+ type : string
18+ example : Conflict
19+ description : Response message.
Original file line number Diff line number Diff line change 1+ description : Too Many Requests.
2+ content :
3+ application/json :
4+ schema :
5+ title : tooManyRequestsResponse
6+ type : object
7+ additionalProperties : false
8+ required :
9+ - status
10+ - message
11+ properties :
12+ status :
13+ type : integer
14+ example : 421
15+ description : Status code.
16+ message :
17+ type : string
18+ example : Too Many Requests
19+ description : Response message.
Original file line number Diff line number Diff line change @@ -2,5 +2,6 @@ strategy:
22 type : string
33 enum :
44 - session
5+ - historical
56 - hybrid
67 example : ' session'
Original file line number Diff line number Diff line change 1+ post :
2+ tags :
3+ - users
4+ operationId : computeUser
5+ x-acl :
6+ - recommendation
7+ summary : Compute the user's personalization profile
8+ description : Sends a request to compute the user's personalization profile.
9+ parameters :
10+ - $ref : ' ../common/parameters.yml#/UserToken'
11+ responses :
12+ ' 202 ' :
13+ $ref : ' ../../common/responses/Accepted.yml'
14+ ' 400 ' :
15+ $ref : ' ../../common/responses/BadRequest.yml'
16+ ' 402 ' :
17+ $ref : ' ../../common/responses/FeatureNotEnabled.yml'
18+ ' 409 ' :
19+ $ref : ' ../../common/responses/Conflict.yml'
20+ ' 421 ' :
21+ $ref : ' ../../common/responses/TooManyRequests.yml'
22+ ' 422 ' :
23+ $ref : ' ../../common/responses/StatusUnprocessableEntity.yml'
24+ ' 500 ' :
25+ $ref : ' ../../common/responses/InternalError.yml'
Original file line number Diff line number Diff line change 1919 $ref : ' ../../common/responses/BadRequest.yml'
2020 ' 402 ' :
2121 $ref : ' ../../common/responses/FeatureNotEnabled.yml'
22- ' 403 ' :
23- $ref : ' ../../common/responses/MethodNotAllowed .yml'
24- ' 404 ' :
25- $ref : ' ../../common/responses/IndexNotFound .yml'
22+ ' 421 ' :
23+ $ref : ' ../../common/responses/TooManyRequests .yml'
24+ ' 500 ' :
25+ $ref : ' ../../common/responses/InternalError .yml'
Original file line number Diff line number Diff line change 4949
5050 /2/realtime/users/{userToken} :
5151 $ref : ' paths/getUser.yml'
52+
53+ /2/realtime/users/{userToken}/compute :
54+ $ref : ' paths/computeUser.yml'
You can’t perform that action at this time.
0 commit comments