Get contact category subscription
documentedLoad the category subscription for a contact and category.
GET /Services.svc/Contacts/{emailOrId}/Categories/{categoryNameOrId}Contactsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
note: I looked up the official Delivra REST Services documentation which shows the endpoint GET /Services.svc/Contacts/{emailOrId}/Categories/{categoryNameOrId} and the required authentication headers (username, password, listname). Full docs at integration.delivra.com. ([integration.delivra.com](https://integration.delivra.com/DelivraRESTServices/Services.svc))
npx -y keychains@latest curl "https://integration.delivra.com/DelivraRESTServices/Services.svc/Contacts/{{$emailOrId}}/Categories/{{$categoryNameOrId}}" \
-X GET \
-H "username: {{DELIVRA_USERNAME}}" \
-H "password: {{DELIVRA_PASSWORD}}" \
-H "listname: {{DELIVRA_LISTNAME}}" \
-H "Accept: application/json"