You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Retrieves a specific user from Rippling. [See the documentation](https://developer.rippling.com/documentation/rest-api/reference/get-users)",
7
+
version: "0.0.1",
8
+
type: "action",
9
+
props: {
10
+
rippling,
11
+
userId: {
12
+
propDefinition: [
13
+
rippling,
14
+
"userId",
15
+
],
16
+
},
17
+
},
18
+
asyncrun({ $ }){
19
+
constresponse=awaitthis.rippling.getUser({
20
+
$,
21
+
userId: this.userId,
22
+
});
23
+
24
+
$.export("$summary",`Successfully retrieved user with ID: ${this.userId}`);
description: "Retrieves a list of all companies from Rippling. [See the documentation](https://developer.rippling.com/documentation/rest-api/reference/list-companies)",
description: "Retrieves a list of all teams from Rippling. [See the documentation](https://developer.rippling.com/documentation/rest-api/reference/list-teams)",
description: "Retrieves a list of all workers from Rippling. [See the documentation](https://developer.rippling.com/documentation/rest-api/reference/list-workers)",
0 commit comments