File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,22 @@ renderforest.getProjects(payload)
9090
9191[ See example] ( https://github.com/renderforest/renderforest-sdk-node/blob/master/examples/projects/get-projects.js )
9292
93+ ### Get a Specific Project
94+
95+ Gets a specific project.
96+ ``` js
97+ const Renderforest = require (' @renderforest/sdk-node' )
98+
99+ const renderforest = new Renderforest ({ signKey: ' <signKey>' , clientId: - 1 })
100+
101+ const payload = {
102+ projectId: 5000658
103+ }
104+ renderforest .getProject (payload)
105+ .then (console .log ) // handle the success
106+ .catch (console .error ) // handle the error
107+ ```
108+ [ See example] ( https://github.com/renderforest/renderforest-sdk-node/blob/master/examples/projects/get-project.js )
93109
94110### Add Project
95111
You can’t perform that action at this time.
0 commit comments