You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using 6.0.0-rc.8's createGroup(GroupParams params) method I get 400 response with name is missing, path is missing
GroupParams groupParams = new GroupParams()
.withName(name)
.withPath(name)
.withParentId(parentId);
gitLabApi.getGroupApi().createGroup(groupParams)
Caused by: org.gitlab4j.api.GitLabApiException: name is missing, path is missing
at org.gitlab4j.api.AbstractApi.validate(AbstractApi.java:784)
at org.gitlab4j.api.AbstractApi.post(AbstractApi.java:402)
at org.gitlab4j.api.GroupApi.createGroup(GroupApi.java:639)
The access token used has been validated using Gitlab's APIs directly and Group addGroup(Group group) works fine.
Group group = new Group();
group.setName(name);
group.setPath(name);
group.setParentId(parentId);
gitLabApi.getGroupApi().addGroup(group)
3 < 201
The text was updated successfully, but these errors were encountered:
Using
6.0.0-rc.8
'screateGroup(GroupParams params)
method I get 400 response withname is missing, path is missing
The access token used has been validated using Gitlab's APIs directly and
Group addGroup(Group group)
works fine.The text was updated successfully, but these errors were encountered: