# Errors
# Authentication-related errors
{
"message": "Invalid token",
"http_code": 403,
"error_code": "E108"
}
1
2
3
4
5
2
3
4
5
# User-related errors
{
"message": "Invalid date of birth. Format: MM/DD/YYYY",
"http_code": 400,
"error_code": "E109"
}
{
"message": "Unknown country: AAA",
"http_code": 400,
"error_code": "E109"
}
{
"message": "User not found",
"http_code": 404,
"error_code": "E102"
}
{
"message": "You do not have permission to view this user",
"http_code": 403,
"error_code": "E108"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Order-related errors
{
"message": "You do not have permission to get this order",
"http_code": 403,
"error_code": "E108"
}
{
"message": "Order not found",
"http_code": 404,
"error_code": "E102"
}
{
"message": "Order cannot be cancelled. Orders cannot be cancelled if they are cancelled, complete, matched or confirmed.",
"http_code": 400,
"error_code": "E109"
}
{
"message": "Order not found.",
"http_code": 404,
"error_code": "E102"
}
{
"message": "You do not have permission to cancel this offer",
"http_code": 403,
"error_code": "E108"
}
{
"message": "I was expecting the poster amount to be 1.38 but got 1.1118.",
"http_code": 400,
"error_code": "E109"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35