Curl call with the oauth token

I am able to test the below curl call with the username and password.

curl -u username:password ‘http://172.17.0.1/remote.php/dav/files/admin/Documents’ -X PROPFIND --data ’<?xml version="1.0" encoding="UTF-8"?>
<d:propfind xmlns:d=“DAV:”>
<d:prop xmlns:oc=“http://owncloud.org/ns”>
<d:getlastmodified/>
<d:getcontentlength/>
<d:getcontenttype/>
oc:permissions/
<d:resourcetype/>
<d:getetag/>
</d:prop>
</d:propfind>’

Can someone please assist me to provide the curl call that will authenticate via a token instead of a password?