Media
media
Returns all images in the organisation media library.
For custom components:
RaiselyComponents.api.one('organisations', '{organisation}').all('media').get(params = {}, headers = {}) => Promise<{result}>
:fa-gears: See Restie Response Data for a more detailed overview of responses through the client wrapper
get/organisations/{organisation}/media
Path parameters
organisationstring required
The UUID of the organisation
Headers
Authorizationstring
A valid HTTP Bearer token, required to access private records.
Response
Media library for the organisation
Example response
{
"data": [
{
"uuid": "a1b2c3d4-0000-0000-0000-000000000000",
"url": "https://raisely-images.imgix.net/adfa1c10-593e-11f1-9802-736d47f9bf37/uploads/logo-4a2f91.png",
"file": "logo-4a2f91.png",
"type": "image/png",
"folder": "uploads"
}
]
}