Skip to content

Commit a784b91

Browse files
author
Slack API Ref Buildbot
committed
Updated from Slack docs, 2025/08/12
1 parent acaccf6 commit a784b91

File tree

3 files changed

+128
-0
lines changed

3 files changed

+128
-0
lines changed

groups/slackLists.download.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name": "slackLists.download"
3+
}
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"group": "slackLists",
3+
"name": "slackLists.download.get",
4+
"deprecated": false,
5+
"desc": "Retrieve list download URL from an export job to download list contents",
6+
"args": {
7+
"job_id": {
8+
"required": true,
9+
"example": "Le48SKT566",
10+
"desc": "The ID of the recently started job to export the list.",
11+
"type": "string"
12+
},
13+
"list_id": {
14+
"required": true,
15+
"example": "F1234567",
16+
"desc": "Id of the list to export.",
17+
"type": "string"
18+
}
19+
},
20+
"response": {
21+
"examples": [
22+
"{\n \"ok\": true,\n \"status\": \"COMPLETED\",\n \"download_url\": \"https://files.example.com/files-pri/1234567890-F12345678/csv/list?origin_team=T1234567890\"\n}",
23+
"{\n \"ok\": false,\n \"error\": \"list_not_found\"\n}"
24+
]
25+
},
26+
"errors": {
27+
"list_not_found": "List was not found.",
28+
"permission_denied": "The bot does not have permission to perform this action.",
29+
"unknown_method": "Feature not enabled for this team.",
30+
"job_not_found": "Could not find an export job matching that id.",
31+
"access_denied": "Access to a resource specified in the request is denied.",
32+
"account_inactive": "Authentication token is for a deleted user or workspace when using a bot token.",
33+
"deprecated_endpoint": "The endpoint has been deprecated.",
34+
"ekm_access_denied": "Administrators have suspended the ability to post a message.",
35+
"enterprise_is_restricted": "The method cannot be called from an Enterprise.",
36+
"invalid_auth": "Some aspect of authentication cannot be validated. Either the provided token is invalid or the request originates from an IP address disallowed from making the request.",
37+
"is_bot": "This method cannot be called by a legacy bot.",
38+
"method_deprecated": "The method has been deprecated.",
39+
"missing_scope": "The token used is not granted the specific scope permissions required to complete this request.",
40+
"not_allowed_token_type": "The token type used in this request is not allowed.",
41+
"not_authed": "No authentication token provided.",
42+
"no_permission": "The workspace token used in this request does not have the permissions necessary to complete the request. Make sure your app is a member of the conversation it's attempting to post a message to.",
43+
"org_login_required": "The workspace is undergoing an enterprise migration and will not be available until migration is complete.",
44+
"token_expired": "Authentication token has expired.",
45+
"token_revoked": "Authentication token is for a deleted user or workspace or the app has been removed when using a user token.",
46+
"two_factor_setup_required": "Two factor setup is required.",
47+
"team_access_not_granted": "The token used is not granted the specific workspace access required to complete this request.",
48+
"accesslimited": "Access to this method is limited on the current network.",
49+
"fatal_error": "The server could not complete your operation(s) without encountering a catastrophic error. It's possible some aspect of the operation succeeded before the error was raised.",
50+
"internal_error": "The server could not complete your operation(s) without encountering an error, likely due to a transient issue on our end. It's possible some aspect of the operation succeeded before the error was raised.",
51+
"invalid_arg_name": "The method was passed an argument whose name falls outside the bounds of accepted or expected values. This includes very long names and names with non-alphanumeric characters other than _. If you get this error, it is typically an indication that you have made a very malformed API call.",
52+
"invalid_arguments": "The method was either called with invalid arguments or some detail about the arguments passed is invalid, which is more likely when using complex arguments like blocks or attachments.",
53+
"invalid_array_arg": "The method was passed an array as an argument. Please only input valid strings.",
54+
"invalid_charset": "The method was called via a POST request, but the charset specified in the Content-Type header was invalid. Valid charset names are: utf-8 iso-8859-1.",
55+
"invalid_form_data": "The method was called via a POST request with Content-Type application/x-www-form-urlencoded or multipart/form-data, but the form data was either missing or syntactically invalid.",
56+
"invalid_post_type": "The method was called via a POST request, but the specified Content-Type was invalid. Valid types are: application/json application/x-www-form-urlencoded multipart/form-data text/plain.",
57+
"missing_post_type": "The method was called via a POST request and included a data payload, but the request did not include a Content-Type header.",
58+
"ratelimited": "The request has been ratelimited. Refer to the Retry-After header for when to retry the request.",
59+
"request_timeout": "The method was called via a POST request, but the POST data was either missing or truncated.",
60+
"service_unavailable": "The service is temporarily unavailable.",
61+
"team_added_to_org": "The workspace associated with your request is currently undergoing migration to an Enterprise Organization. Web API and other platform operations will be intermittently unavailable until the transition is complete."
62+
}
63+
}
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"group": "slackLists",
3+
"name": "slackLists.download.start",
4+
"deprecated": false,
5+
"desc": "Initiate a job to export list contents",
6+
"args": {
7+
"list_id": {
8+
"required": true,
9+
"example": "F1234567",
10+
"desc": "Id of the list to export.",
11+
"type": "string"
12+
},
13+
"include_archived": {
14+
"required": false,
15+
"example": "",
16+
"desc": ".",
17+
"type": "boolean"
18+
}
19+
},
20+
"response": {
21+
"examples": [
22+
"{\n \"ok\": true,\n \"job_id\": \"LeF1234567\"\n}",
23+
"{\n \"ok\": false,\n \"error\": \"list_not_found\"\n}"
24+
]
25+
},
26+
"errors": {
27+
"list_not_found": "List was not found.",
28+
"permission_denied": "The bot does not have permission to perform this action.",
29+
"unknown_method": "Feature not enabled for this team.",
30+
"access_denied": "Access to a resource specified in the request is denied.",
31+
"account_inactive": "Authentication token is for a deleted user or workspace when using a bot token.",
32+
"deprecated_endpoint": "The endpoint has been deprecated.",
33+
"ekm_access_denied": "Administrators have suspended the ability to post a message.",
34+
"enterprise_is_restricted": "The method cannot be called from an Enterprise.",
35+
"invalid_auth": "Some aspect of authentication cannot be validated. Either the provided token is invalid or the request originates from an IP address disallowed from making the request.",
36+
"is_bot": "This method cannot be called by a legacy bot.",
37+
"method_deprecated": "The method has been deprecated.",
38+
"missing_scope": "The token used is not granted the specific scope permissions required to complete this request.",
39+
"not_allowed_token_type": "The token type used in this request is not allowed.",
40+
"not_authed": "No authentication token provided.",
41+
"no_permission": "The workspace token used in this request does not have the permissions necessary to complete the request. Make sure your app is a member of the conversation it's attempting to post a message to.",
42+
"org_login_required": "The workspace is undergoing an enterprise migration and will not be available until migration is complete.",
43+
"token_expired": "Authentication token has expired.",
44+
"token_revoked": "Authentication token is for a deleted user or workspace or the app has been removed when using a user token.",
45+
"two_factor_setup_required": "Two factor setup is required.",
46+
"team_access_not_granted": "The token used is not granted the specific workspace access required to complete this request.",
47+
"accesslimited": "Access to this method is limited on the current network.",
48+
"fatal_error": "The server could not complete your operation(s) without encountering a catastrophic error. It's possible some aspect of the operation succeeded before the error was raised.",
49+
"internal_error": "The server could not complete your operation(s) without encountering an error, likely due to a transient issue on our end. It's possible some aspect of the operation succeeded before the error was raised.",
50+
"invalid_arg_name": "The method was passed an argument whose name falls outside the bounds of accepted or expected values. This includes very long names and names with non-alphanumeric characters other than _. If you get this error, it is typically an indication that you have made a very malformed API call.",
51+
"invalid_arguments": "The method was either called with invalid arguments or some detail about the arguments passed is invalid, which is more likely when using complex arguments like blocks or attachments.",
52+
"invalid_array_arg": "The method was passed an array as an argument. Please only input valid strings.",
53+
"invalid_charset": "The method was called via a POST request, but the charset specified in the Content-Type header was invalid. Valid charset names are: utf-8 iso-8859-1.",
54+
"invalid_form_data": "The method was called via a POST request with Content-Type application/x-www-form-urlencoded or multipart/form-data, but the form data was either missing or syntactically invalid.",
55+
"invalid_post_type": "The method was called via a POST request, but the specified Content-Type was invalid. Valid types are: application/json application/x-www-form-urlencoded multipart/form-data text/plain.",
56+
"missing_post_type": "The method was called via a POST request and included a data payload, but the request did not include a Content-Type header.",
57+
"ratelimited": "The request has been ratelimited. Refer to the Retry-After header for when to retry the request.",
58+
"request_timeout": "The method was called via a POST request, but the POST data was either missing or truncated.",
59+
"service_unavailable": "The service is temporarily unavailable.",
60+
"team_added_to_org": "The workspace associated with your request is currently undergoing migration to an Enterprise Organization. Web API and other platform operations will be intermittently unavailable until the transition is complete."
61+
}
62+
}

0 commit comments

Comments
 (0)