Sending API Request

Hi, I hope you can help me how to send an API request in suitecrm. Im quite new in using API and I dont quite get the documentation. I also tried to set it up in Postman. How can I sent an API request like creating or importing new accounts.

Hi,
I would recommend to use the v4 api:

An Example for creating an account:

method: set_entry

{
	"session": "{{sessionid}}",
	"module_name":"Accounts",
	"name_value_list":{
		"name":"API_Create_Test",
		"assigned_to":"1",
		"website":"google.de",
		"phone_office":"123456"
	}
}