Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve conflicts with main #138

Merged
merged 14 commits into from
Oct 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 16 additions & 18 deletions apiary.apib
Original file line number Diff line number Diff line change
Expand Up @@ -307,9 +307,7 @@ If an invalid access token was sent, the response is still a 401, though.
"version": "5.1.0.123",
"name": "Acrolinx Core Platform"
},
"locales": {
"en"
}
"locales": [ "en" ]
},
"links": {
"signIn": "https://tenant.acrolinx.cloud/api/v1/auth/sign-ins",
Expand Down Expand Up @@ -363,7 +361,7 @@ to authenticate the request.

X-Acrolinx-Auth: 123579080a8d1fee12490a90dc3 (valid) OR (invalid/expired access token) OR (no access token)
X-Acrolinx-Client-Locale: ja
X-Acrolinx-Client: QWxlU2hNyb2bHVnLWlunhQyR29Rm9xpbvZ2lZXRz; 1.0.1.45; 12345
X-Acrolinx-Client: QWxlU2hNyb2bHVnLWlunhQyR29Rm9xpbvZ2lZXRz; 1.0.1.45;

+ Response 200 (application/json)
No sign-in needed, the response body will contain valid access tokens.
Expand Down Expand Up @@ -6531,7 +6529,7 @@ This lets you delete a specified role based on its *id*.

X-Acrolinx-Auth: your_access_token

+ Response 204 (application/json)
+ Response 204

+ Response 400 (application/json)

Expand Down Expand Up @@ -6817,19 +6815,19 @@ Retrieves active notifications from the platform.
+ Response 200 (application/json)

{
"data":
{
"requestTimeInMilliseconds" : "1525449382",
"platformNotifications": [{
"id": "e06491e9-c67f-4da7-85da-eb30b9ca9101",
"title": "Important Announcement",
"body": "Acrolinx Platform 5.6 will be deployed tomorrow.",
"importance": "high",
"start": 1528127782,
"end": 1530719782
}
]
}}
"data": {
"requestTimeInMilliseconds": "1525449382",
"platformNotifications": [
{
"id": "e06491e9-c67f-4da7-85da-eb30b9ca9101",
"title": "Important Announcement",
"body": "Acrolinx Platform 5.6 will be deployed tomorrow.",
"importance": "high",
"start": 1528127782,
"end": 1530719782
}
]
}
}


Expand Down
Loading