Custom:button-card to use for the "my position" of my blinds not working

Hi,

I have blinds and with the my button the blinds go to the “my position”/

When I use a normal button everything works fine with this code:

show_name: true
show_icon: true
type: button
tap_action:
  action: toggle
entity: button.werkkamer_my_position

I want to use the custom:button-card
When i don’t specify an action the tap_action should be default - toggle
But when i push the button I got the “more information” screen.

type: custom:button-card
entity: button.werkkamer_my_position
color_type: icon
color: steelblue
show_entity_picture: true
icon: mdi:star
label: My tuin
show_label: true
show_name: false
styles:
  card:
    - height: 100px

When I add tap_action: toggle
nothing happens when I push the button.

type: custom:button-card
entity: button.werkkamer_my_position
color_type: icon
color: steelblue
show_entity_picture: true
icon: mdi:star
label: My tuin
show_label: true
show_name: false
tap_action: toggle
styles:
  card:
    - height: 100px

Who can help me to solve this usse?

try this

type: custom:button-card 
icon: mdi:star
tap_action:
  action: call-service
  service: button.press
  service_data:          
    entity_id: button.wohnzimmer_rollladen_rechts_my_position

Greetings Moss