Как я могу преобразовать следующую команду cURL в вызов Postman Rest?
curl -X POST abc.com/input.import -H 'content-type: application/x-www-form-urlencoded' --data-urlencode "apiKey=123-456" --data-urlencode "secret=12/her" --data-urlencode "userKey=ApUR" --data-urlencode "email=fakeImportedAccount@example.com" --data-urlencode "profile={'firstName':'John','lastName':'Kira'}"
Я попробовал следующее:
URL: (POST) abc.com/input.import
Заголовок: Content-Type: application / json
Body:
{
"apiKey":"123-456",
"userKey":"ApUR",
"secret":"12/her",
"email":"fakeImportedAccount@example.com",
"profile":{
"firstName":"John",
"lastName":"Kira"
}
}
EDIT: требуется формат необработанного тела в Postman.При импорте создается запрос в форме "x-www-form-urlencoded"