Add signing group members
curl --request POST \
--url https://my.flowsign.app/api/v1/signing-groups/{groupId}/members \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userIds": [
"<string>"
],
"emails": [
"jsmith@example.com"
]
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({userIds: ['<string>'], emails: ['jsmith@example.com']})
};
fetch('https://my.flowsign.app/api/v1/signing-groups/{groupId}/members', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://my.flowsign.app/api/v1/signing-groups/{groupId}/members"
payload = {
"userIds": ["<string>"],
"emails": ["jsmith@example.com"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)using RestSharp;
var options = new RestClientOptions("https://my.flowsign.app/api/v1/signing-groups/{groupId}/members");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
request.AddJsonBody("{\n \"userIds\": [\n \"<string>\"\n ],\n \"emails\": [\n \"jsmith@example.com\"\n ]\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);
{
"data": {
"added": [
{
"id": "<string>",
"email": "<string>",
"displayName": "<string>"
}
],
"alreadyMembers": [
{
"id": "<string>",
"email": "<string>",
"displayName": "<string>"
}
]
}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}Signing groups
Add signing group members
Adds workspace members to a signing group by user id, email, or both (up to 100 per call). Each person MUST be an active member of the workspace; otherwise the whole call is a 400 and nobody is added. People already in the group are returned in alreadyMembers. Requires canManageSigningGroups.
POST
/
api
/
v1
/
signing-groups
/
{groupId}
/
members
Add signing group members
curl --request POST \
--url https://my.flowsign.app/api/v1/signing-groups/{groupId}/members \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userIds": [
"<string>"
],
"emails": [
"jsmith@example.com"
]
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({userIds: ['<string>'], emails: ['jsmith@example.com']})
};
fetch('https://my.flowsign.app/api/v1/signing-groups/{groupId}/members', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://my.flowsign.app/api/v1/signing-groups/{groupId}/members"
payload = {
"userIds": ["<string>"],
"emails": ["jsmith@example.com"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)using RestSharp;
var options = new RestClientOptions("https://my.flowsign.app/api/v1/signing-groups/{groupId}/members");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
request.AddJsonBody("{\n \"userIds\": [\n \"<string>\"\n ],\n \"emails\": [\n \"jsmith@example.com\"\n ]\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);
{
"data": {
"added": [
{
"id": "<string>",
"email": "<string>",
"displayName": "<string>"
}
],
"alreadyMembers": [
{
"id": "<string>",
"email": "<string>",
"displayName": "<string>"
}
]
}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}{
"error": "<string>",
"details": {}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
The workspace to act in, from GET /api/v1/workspaces. Omit to act in the organisation's default workspace. A workspace the key's user cannot act in is treated as omitted.
Path Parameters
Body
application/json
Response
Success
Show child attributes
Show child attributes
Was this page helpful?

