Is it still not possible to add new posts to a custom post type in WordPress?

Is it still not possible to add new posts to a custom post type in WordPress?

I created a custom post type in WordPress with Metabox Plugin and would like to add new posts there when a new Google Sheets row is added.

Hi Tobias, you sure can! By using the Custom API option in Wordpress i.e. I created a new taxanomy in wordpress and I the following URL

The default URL for ‘Categories’:

https://domain.com/wp-json/wp/v2/categories

I have created a new taxonomy for a ‘rol’

I solve this by using

https://domain.com/wp-json/wp/v2/rol

You can do the same for posts:

https://domain.com/wp-json/wp/v2/posts

and use whatever your custom post type it.

https://domain.com/wp-json/wp/v2/put_your_custom_post_type_here

Let me know if that works for you?