Solved

Is it possible to fire POST with different product bundles?


Userlevel 7
Badge +13

This question was originally asked June 09, 2022 06:09 by user Timur Myrzagaliev:

 

Hi, everyone! I am interested in downloading both 'visual' and ''analytic_8b_udm2" at the same time (making one order instead of 2). Is it possible to do? if yes how should the payload be correctly generated? Ref: https://developers.planet.com/docs/orders/tools-toolchains/

 

 
icon

Best answer by elyhienrich 25 July 2022, 17:14

View original

2 replies

Userlevel 7
Badge +13


Abhishek replied on June 11, 2022 19:42.

 

 

Timur Myrzagaliev, Yes it's possible

Post: https://api.planet.com/compute/ops/orders/v2

Authentication: Basic Authentication

 

Body:

 

{

"name":"ndvi_bandmath_example",

"products":[

{

"item_ids":[

"20220124_062250_31_220b"

],

"item_type":"PSScene",

"product_bundle":"visual"

},

{

"item_ids":[

"20220124_062250_31_220b"

],

"item_type":"PSScene",

"product_bundle":"analytic_8b_udm2"

}

],

"delivery":{

"archive_type":"zip",

"archive_filename":"{{name}}_{{order_id}}.zip"

}

}

 

}

Userlevel 6
Badge +4

Thanks for sharing this documentation.

Reply