Getting error 610 while Testing Bulk Import Program Members API Endpoint | Community
Skip to main content
New Participant
October 27, 2023
Solved

Getting error 610 while Testing Bulk Import Program Members API Endpoint

  • October 27, 2023
  • 1 reply
  • 1875 views

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

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Darshil_Shah1

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

 

1 reply

Darshil_Shah1
Darshil_Shah1Accepted solution
Community Manager
October 27, 2023

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

 

New Participant
October 27, 2023

Thanks for catching that, Darshil. Certainly, I've overlooked the path.

Darshil_Shah1
Community Manager
October 27, 2023

You're welcome, @nitishbisht! As always, I'm glad to be of help. 🙂