OAuthを必要とするWeb APIにアクセスするには、OAuth2フィールドを使ってトークンをHTTP Request()に渡します。
request = HTTPRequest(
URL( apiEndpoint ),
Method( "POST" ),
OAuth2( token ),
);