• No results found

Assets

SEEK provides static assets for third-party integrations. These are typically SVG images that you can display in your software.

Displaying images in your software

Certain operations in the SEEK API can return a link to an image asset. You can use this URL to display the image in your software.
JSON
Copy
{
  "image": {
    "url": "https://integration.seek.com/awsk/button-assets/button-images/seek/en/standard-accent.svg"
  }
}
Use an img tag to display the image in your software:
HTML
Copy
<img
  src="https://integration.seek.com/awsk/button-assets/button-images/seek/en/standard-accent.svg"
  alt="Apply with SEEK"
/>
Refer to our use case documentation for the best way to display a given asset in your software.

Content Security Policy compatibility

This section is for integration partners who enforce strict content security policies in their web-based software.Content Security Policy  (CSP) is a security feature that helps prevent various types of attacks, including Cross-Site Scripting (XSS)  and data injection attacks. Add the following directive to your CSP to allow static assets from the SEEK API:
HTML
Copy
Content-Security-Policy: img-src 'self' https://integration.seek.com/assets/
https://integration.seek.com/awsk/button-assets/;
This sample directive instructs the browser to only load images from your own domain (self) and SEEK.