Run in Apifox
Allows batch updating of the folders bound to profiles. folderId can be obtained from the /api/folder/list endpoint or returned by the /api/folder/add endpoint.
Request Add parameter in header Authorization
Example: Authorization: ********************
Body Params application/json
{
"ids" : [
"d6255fc4f8fe4e8fbe2b419d880897b2" ,
"c5071a3595aa4934b2645198afe40478"
] ,
"folderId" : "2c92b02398a25c370198a267782d000a"
} Request Code Samples
curl --location --request POST 'http://127.0.0.1:30898/api/profile/updateProfileFolder' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"ids": [
"d6255fc4f8fe4e8fbe2b419d880897b2",
"c5071a3595aa4934b2645198afe40478"
],
"folderId": "2c92b02398a25c370198a267782d000a"
}' Responses This response does not have a body.
Modified at 2025-08-15 06:20:52