I am just testing the Bulk Import Program Member API with Postman. Not sure why I am getting error 610: Requested resource not found while making the post call. Please let me know what wrong I am doing here.
API_Test contains:
firstName,lastName,Email
Naman1,Ojha1,nojha1@gmail.com
Naman2,Ojha2,nojha2@gmail.com
Naman3,Ojha3,nojha3@gmail.com
Naman4,Ojha4,nojha4@gmail.com
Naman5,Ojha5,nojha5@gmail.com
Naman6,Ojha6,nojha6@gmail.com
Naman7,Ojha7,nojha7@gmail.com
Naman8,Ojha8,nojha8@gmail.com
Naman9,Ojha9,nojha9@gmail.com
Solved! Go to Solution.
A 610: Requested resource not found error signifies that the URI in the call did not match a REST API resource type. This is often due to an incorrectly spelled or incorrectly formatted request URI. Looking at your Postman snapshot, you have an unnecessary rest in the path after your Marketo REST endpoint (your instance's base URL). You might have directly copied and pasted the REST endpoint as-is from Admin > Web Services > Rest API > Endpoint. For bulk APIs, you need to remove the rest. Below is the correct endpoint:
<mkto-instance-rest-endpoint>/bulk/v1/program/{programId}/members/import.json
A 610: Requested resource not found error signifies that the URI in the call did not match a REST API resource type. This is often due to an incorrectly spelled or incorrectly formatted request URI. Looking at your Postman snapshot, you have an unnecessary rest in the path after your Marketo REST endpoint (your instance's base URL). You might have directly copied and pasted the REST endpoint as-is from Admin > Web Services > Rest API > Endpoint. For bulk APIs, you need to remove the rest. Below is the correct endpoint:
<mkto-instance-rest-endpoint>/bulk/v1/program/{programId}/members/import.json
Thanks for catching that, Darshil. Certainly, I've overlooked the path.
You're welcome, @NitishBisht! As always, I'm glad to be of help. 🙂