-
Notifications
You must be signed in to change notification settings - Fork 27
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
(ChaosCenter): API Testing issues tracker #362
Comments
GraphQL API
Authentication API
Documentation
{
"data": {
"ID": "c0b43e3f-8e7f-475e-9aa3-c2393a0f408b",
"UserName": "admin",
"CreatedAt": "1627040799",
"Email": "",
"Name": "",
"Projects": [
{
"ID": "384f6666-3b7d-4381-b5b5-bfc4c3dedbc8",
"Name": "my project",
"Members": [
{
"UserID": "c0b43e3f-8e7f-475e-9aa3-c2393a0f408b",
"UserName": "admin",
"Name": "",
"Role": "Owner",
"Email": "",
"Invitation": "Accepted",
"JoinedAt": "1640676874",
"DeactivatedAt": ""
}
],
"State": "active",
"CreatedAt": "1627040799",
"UpdatedAt": "1627040799",
"RemovedAt": ""
}
]
}
} to {
"data": {
"ID": "c0b43e3f-8e7f-475e-9aa3-c2393a0f408b",
"Username": "admin",
"CreatedAt": "1627040799",
"Email": "",
"Name": "",
"Projects": [
{
"ID": "384f6666-3b7d-4381-b5b5-bfc4c3dedbc8",
"Name": "my project",
"Members": [
{
"UserID": "c0b43e3f-8e7f-475e-9aa3-c2393a0f408b",
"Role": "Owner",
"Invitation": "Accepted",
"JoinedAt": "1640676874",
}
],
"State": "active",
"CreatedAt": "1627040799",
"UpdatedAt": "1627040799",
"RemovedAt": ""
}
]
}
} That is change
"Members": [
{
"UserID": "c0b43e3f-8e7f-475e-9aa3-c2393a0f408b",
"UserName": "admin",
"Name": "",
"Role": "Owner",
"Email": "",
"Invitation": "Accepted",
"JoinedAt": "1640676874",
"DeactivatedAt": ""
}
], to "Members": [
{
"UserID": "c0b43e3f-8e7f-475e-9aa3-c2393a0f408b",
"Role": "Owner",
"Invitation": "Accepted",
"JoinedAt": "1640676874",
}
],
Other Issues
|
Current Api Tests Reportproject.spec.js1 test failing
user.spec.jsAll tests passed cluster.spec.js3 tests fail
gitops.spec.jsAll tests passed imageRegistry.spec.jsAll tests passed myhub.spec.js1 test failed
workflow.spec.js3 tests failing
|
This issue will be used as a tracker for tracking issues in different APIs of ChaosCenter -
The text was updated successfully, but these errors were encountered: