Een simpele left join?
SELECT organisation.*
FROM organisation
LEFT JOIN srp_reseller_buffer ON
(organisation.organisation_id = srp_reseller_buffer.organisation.id AND property_id = 'X')
WHERE srp_reseller_buffer.organisation_id IS NULL
Records die niet bestaan aan de 'rechterkant' (srp_reseller) zijn null.