Rest API Explorer - Insert multiple records
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2024 03:04 AM - edited 04-12-2024 03:06 AM
Hello.
I am testing the insert multiple records on the Rest API Explorer module.
with this body
{
"records":[
{"u_code":"1","u_external_id":"1","u_opco_name":"test"},
{"u_code":"2","u_external_id":"2","u_opco_name":"test2"},
{"u_code":"3","u_external_id":"3","u_opco_name":"test3"},
{"u_code":"4","u_external_id":"4","u_opco_name":"test4"},
{"u_code":"5","u_external_id":"5","u_opco_name":"test5"},
{"u_code":"6","u_external_id":"6","u_opco_name":"test6"},
{"u_code":"7","u_external_id":"7","u_opco_name":"test7"}
]
}
And it is working well:
But when I try the same thing on postman... it inserts empty fields on my staging table
Can someone help me please?
Thank you
André Ramos

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2024 05:11 AM - edited 04-12-2024 05:16 AM
Hi @Andr_1 ,
I tried your problem on postman as you mentioned, it works for me, may be you can check Business rules may be there is setAbortAction is present in your instance at the time of insertion. SO what's why it is not inserting the records.
Please mark correct and helpful if my answer works for you
Thanks and Regards
Sarthak
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2024 10:20 PM
By default, the keys are set to use column labels rather than column names. To resolve this, try switching to column labels and test again.
The request body format should match the staging table's columns. Use the records array with key-value pairs that align with the staging table's column labels to ensure proper insertion into the import fields.
If you need to modify the mapping settings, you can add an entry in the REST Insert Multiple (sys_rest_insert_multiple) table and change the Column mapping from Label to Column Name.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2024 12:25 AM
Hi @ash1xh , I did as your replay. Its worked. Thanks a lot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2025 01:18 PM
Did not expect this. Thanks, this resolved my issue as well.