MAPIService base class
Base class of every MAPI services that manages REST request commands
Source code in restmapi\restmapi\services.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | |
mapi_base_url
property
Base url of the MAPI object
__init__(url=None)
Construct a MAPIService from its base url.
Parameters:
-
url(string, default:None) –Base url from the service, by default the url is construct using environment variable MAPI_DEFAULT_URL or MAPI registry parameters else "http://localhost:80".
Raises:
-
Exception–If MAPI REST API is not activvated and url is not specified.
Source code in restmapi\restmapi\services.py
invoke_web_get_request(sub_url)
Invoke REST request with verb GET to the mapi service.
Parameters:
-
sub_url(string) –Sub url to be added to mapi_base_url (including the query parameters if needed)
Returns:
-
object–The result of the REST request converted from json
Raises:
-
Exception–Sent by the server (in case of status code 500). The exception contains a json object with the server description
-
Exception–Sent when the status code is different from 200.
-
Exception–Sent when format is wrong
Source code in restmapi\restmapi\services.py
invoke_web_post_request(sub_url)
Invoke REST request with verb POST to the mapi service.
Parameters:
-
sub_url(string) –Sub url to be added to mapi_base_url (including the query parameters if needed)
Returns:
-
object–The result of the REST request converted from json
Raises:
-
Exception–Sent by the server (in case of status code 500). The exception contains a json object with the server description
-
Exception–Sent when the status code is different from 200.
-
Exception–Sent when format is wrong
Source code in restmapi\restmapi\services.py
invoke_web_request(sub_url, method='Get', body=None, raw=False)
Invoke a REST request to the mapi service.
Parameters:
-
sub_url(string) –Sub url to be added to mapi_base_url (including the query parameters if needed) -
method(string, default:'Get') –Common REST verb (Get, Post, Delete, ...), by default "Get" -
body(object, default:None) –Object to be added the body, by default None -
raw(bool, default:False) –Define the format content, by default False. If true, the web request result is returned. Else, the body and the result are in json format and automatically parsed.
Returns:
-
object–The result of the REST request converted from json if raw is False
Raises:
-
Exception–Sent by the server (in case of status code 500). The exception contains a json object with the server description
-
Exception–Sent when the status code is different from 200.
-
Exception–Sent when format is wrong (only if raw is False)