WhatsApp cloud API update profile pic error

For unknown reason I am not able to update the profile pic using php curl.

Here is my json response:
(“pic_profile” is the response from /whatsapp_business_profile after tried updating pic image)

"media_ext": "jpg",
"media": "1735806494_b5b3b5c51f19759913fc.jpg",
"media_mime": "image/jpeg",
"media_size_bytes": 4275,
"media_size_mb": "0.004",
"media_size_kb": "4.175",
"media_original_name": "app_archivo.jpg",
"pic_profile": {
    "error": {
        "message": "An unknown error occurred",
        "type": "OAuthException",
        "code": 1,
        "error_subcode": 3441012,
        "is_transient": false,
        "error_user_title": "Image type not supported",
        "error_user_msg": "Upload a JPG image.",
        "fbtrace_id": "AvNAqSXGFVmYsy5cccNApxs"
    }
}

As you can see it’s a real jpg file, also I tried with many other jpg files but anytime it falls.

FYI: I am receiving the handle $file->h without any issue from resumable upload.

Any clue?
Is an error/issue from WA Cloud API side?

Thanks a lot.