Use the following query, if you can login as the schema owner.
SELECT * FROM user_constraints
WHERE constraint_type ='P'
/
Otherwise, as DBA please use the following query.
SELECT * FROM dba_constraints
WHERE constraint_type ='P'
AND owner = '<schema name>'
/