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

createGroup results in 400 error #1230

Closed
michaeln31 opened this issue Feb 24, 2025 · 3 comments
Closed

createGroup results in 400 error #1230

michaeln31 opened this issue Feb 24, 2025 · 3 comments

Comments

@michaeln31
Copy link

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
@ags313
Copy link

ags313 commented Mar 2, 2025

Getting the same.
Thanks for the workaround with addGroup

@jmini
Copy link
Collaborator

jmini commented Mar 5, 2025

I am really sorry. This issue has been fixed a while ago with #1224 but I never published a release since then.

I will create a 6.0.0-rc.9 ASAP

@jmini
Copy link
Collaborator

jmini commented Mar 5, 2025

6.0.0-rc.9 was released

@jmini jmini closed this as completed Mar 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants