I need help with this.
I can’t find anything (API) that lets me create users via API.
Please help
Thanks in advance
I need help with this.
I can’t find anything (API) that lets me create users via API.
Please help
Thanks in advance
Hey @EvanVictor , there’s no “stable” endpoint to manupulate “user” resource in Ghost at the moment. There’s an experimental endpoint /users/
metnioned in the Admin API docs:
Also, you can (recommenced method) be able to use Admin API JavaScript Client SDK:
SDK should allow you to do things like:
const api = new GhostAdminAPI(config);
const users = await api.users.browse();
I’ll check this thanks @naz