@@ -14,6 +14,9 @@ def initialize(client, version = DEFAULT_VERSION)
14
14
end
15
15
16
16
# Assign terminals
17
+ #
18
+ # Deprecated since POS Terminal Management API v1
19
+ # Use [Management API](https://docs.adyen.com/api-explorer/Management/latest/overview).
17
20
def assign_terminals ( request , headers : { } )
18
21
endpoint = '/assignTerminals' . gsub ( /{.+?}/ , '%s' )
19
22
endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -24,6 +27,9 @@ def assign_terminals(request, headers: {})
24
27
end
25
28
26
29
# Get the account or store of a terminal
30
+ #
31
+ # Deprecated since POS Terminal Management API v1
32
+ # Use [Management API](https://docs.adyen.com/api-explorer/Management/latest/overview).
27
33
def find_terminal ( request , headers : { } )
28
34
endpoint = '/findTerminal' . gsub ( /{.+?}/ , '%s' )
29
35
endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -34,6 +40,9 @@ def find_terminal(request, headers: {})
34
40
end
35
41
36
42
# Get the stores of an account
43
+ #
44
+ # Deprecated since POS Terminal Management API v1
45
+ # Use [Management API](https://docs.adyen.com/api-explorer/Management/latest/overview).
37
46
def get_stores_under_account ( request , headers : { } )
38
47
endpoint = '/getStoresUnderAccount' . gsub ( /{.+?}/ , '%s' )
39
48
endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -44,6 +53,9 @@ def get_stores_under_account(request, headers: {})
44
53
end
45
54
46
55
# Get the details of a terminal
56
+ #
57
+ # Deprecated since POS Terminal Management API v1
58
+ # Use [Management API](https://docs.adyen.com/api-explorer/Management/latest/overview).
47
59
def get_terminal_details ( request , headers : { } )
48
60
endpoint = '/getTerminalDetails' . gsub ( /{.+?}/ , '%s' )
49
61
endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -54,6 +66,9 @@ def get_terminal_details(request, headers: {})
54
66
end
55
67
56
68
# Get the list of terminals
69
+ #
70
+ # Deprecated since POS Terminal Management API v1
71
+ # Use [Management API](https://docs.adyen.com/api-explorer/Management/latest/overview).
57
72
def get_terminals_under_account ( request , headers : { } )
58
73
endpoint = '/getTerminalsUnderAccount' . gsub ( /{.+?}/ , '%s' )
59
74
endpoint = endpoint . gsub ( %r{^/} , '' )
0 commit comments