Custom image in picture-entity card not shown

Hi, my target is to show all persons in my home with a picture-entity card without the persons state, when the persons are “not_home” greyed out, but with persons state within the picture.

I have now created a grid setup with conditional cards and picture-entity’s.
My problem is that image i have configured within the picture-entity cards are not loaded. In all cases the images from the person is shown, also when i have configured a picture manually.
Does anyone have an idea? It is my first post here, so yo can believe my, i am really confused :sweat_smile:

This is my code:

type: grid
square: true
columns: 3
cards:
  - type: conditional
    conditions:
      - condition: state
        entity: person.dennis
        state: home
    card:
      show_state: false
      show_name: false
      camera_view: auto
      type: picture-entity
      aspect_ratio: "1"
      image: /api/image/serve/53a7395b140ed6c1673bc67ba1403081/512x512
      entity: person.dennis
  - type: conditional
    conditions:
      - condition: state
        entity: person.dennis
        state_not: home
    card:
      show_state: true
      show_name: false
      camera_view: auto
      type: picture-entity
      entity: person.dennis
      aspect_ratio: "1"
      image: /api/image/serve/52e20c499121dd54cf2e03814623bfde/512x512
  - type: conditional
    conditions:
      - condition: state
        entity: person.nadine
        state: home
    card:
      show_state: false
      show_name: false
      camera_view: auto
      type: picture-entity
      entity: person.nadine
      aspect_ratio: "1"
      image: /api/image/serve/12bbcf9324196bb35107a6b5926593b9/512x512
  - type: conditional
    conditions:
      - condition: state
        entity: person.nadine
        state_not: home
    card:
      show_state: true
      show_name: false
      camera_view: auto
      type: picture-entity
      entity: person.nadine
      aspect_ratio: "1"
      image: /api/image/serve/e711a2405c78d4768c12d5e8cab4b7b6/512x512
  - type: conditional
    conditions:
      - condition: state
        entity: person.pauline
        state: home
    card:
      show_state: false
      show_name: false
      camera_view: auto
      type: picture-entity
      entity: person.pauline
      aspect_ratio: "1"
      image: /api/image/serve/5d02d410c4b591b10e22c46d77e14048/512x512
  - type: conditional
    conditions:
      - condition: state
        entity: person.pauline
        state_not: home
    card:
      show_state: true
      show_name: false
      camera_view: auto
      type: picture-entity
      entity: person.pauline
      aspect_ratio: "1"
      image: /api/image/serve/4b866015a859a8e94f4233de904cc910/512x512

I have also checked the image by copy and paste them into the URL and the picture is shown there as expected.