Dear,
Im trying to get the image of an record via the API. All data comes in except the image:
I have tried: https://docs.espocrm.com/development/api/attachment/ without success.
This is the script:
Im trying to get the image of an record via the API. All data comes in except the image:
I have tried: https://docs.espocrm.com/development/api/attachment/ without success.
This is the script:
Code:
// Fetch product information $response = $client->request('GET', 'Product'); if (!$response || !isset($response['list'][0])) { die("Failed to retrieve product information."); } $product = $response['list'][0]; $imageUrl = $url . "/api/v1/Attachment/file/" . $product['id'];
Comment