SOLVED

Getting error 610 while Testing Bulk Import Program Members API Endpoint

Go to solution
NitishBisht
Level 1

Getting error 610 while Testing Bulk Import Program Members API Endpoint

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.

NitishBisht_0-1698393805751.png

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

1 ACCEPTED SOLUTION

Accepted Solutions
Darshil_Shah1
Level 10 - Community Advisor + Adobe Champion

Re: Getting error 610 while Testing Bulk Import Program Members API Endpoint

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

 

View solution in original post

3 REPLIES 3
Darshil_Shah1
Level 10 - Community Advisor + Adobe Champion

Re: Getting error 610 while Testing Bulk Import Program Members API Endpoint

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

 

NitishBisht
Level 1

Re: Getting error 610 while Testing Bulk Import Program Members API Endpoint

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

Darshil_Shah1
Level 10 - Community Advisor + Adobe Champion

Re: Getting error 610 while Testing Bulk Import Program Members API Endpoint

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