Skip to content

Get list of wallpapers
Stable

Request

Returns list of wallpapers

Security
apiKey
Path
enterprise_idstringrequired

A UUID string identifying this enterprise.

Query
created_on_gtstring, (datetime)

Filter applications created after a given timestamp.

created_on_ltstring, (datetime)

Filter applications created before a given timestamp.

updated_on_gtstring, (datetime)

Filter applications updated after a given timestamp.

updated_on_ltstring, (datetime)

Filter applications updated before a given timestamp.

limitinteger

Number of results to return per page.

Default:20
offsetinteger

Return results from this index.

Default:0
cURL
curl -i -X GET \
  'https://develop-api.esper.io/_mock/openapi/v1/enterprise/{enterprise_id}/wallpaper/?created_on_gt=string&created_on_lt=string&updated_on_gt=string&updated_on_lt=string&limit=20&offset=0' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

successful operation

Bodyapplication/json
countintegerrequired
nextstring or null, (url)
previousstring or null, (url)
resultsArray of objects(Wallpaper)required
Response
{ "count": 0, "next": "string", "previous": "string", "results": [ {} ] }