Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. ###UFDM Referral Endpoint
  2. **POST** /signup/ufdm
  3.  
  4. **Parameters**
  5. * harness_id = _string_
  6. * type = _organization_, _referral_
  7. * code = _string_
  8.  
  9. **200 Response**
  10. ```javascript
  11. {
  12. "message": "successfully registered with {organization|referral} code"
  13. }
  14. ```
  15.  
  16. **40X Response**
  17. ```javascript
  18. {
  19. "error": "incorrect/unrecognized {organization|referral} code"
  20. }
  21. ```
  22. ---
  23.  
  24. ###Account Strength Endpoint
  25. **GET** /account/strength
  26.  
  27. **Parameters**
  28. * harness_id = _string_
  29.  
  30. **Response**
  31. ```javascript
  32. {
  33. "primary": [
  34. {
  35. "title": "Create account",
  36. "active": true,
  37. "percent": 25
  38. },
  39. {
  40. "title": "Connect roundup account",
  41. "active": true,
  42. "percent": 25
  43. },
  44. {
  45. "title": "Connect funding account",
  46. "active": false,
  47. "percent": 25
  48. },
  49. {
  50. "title": "Donate $10",
  51. "active": false,
  52. "percent": 25
  53. }
  54. ],
  55. "secondary": [
  56. {
  57. "title": "Refer a friend",
  58. "active": true,
  59. "percent": 25
  60. },
  61. {
  62. "title": "foo",
  63. "active": false,
  64. "percent": 25
  65. },
  66. {
  67. "title": "bar",
  68. "active": false,
  69. "percent": 10
  70. },
  71. {
  72. "title": "baz",
  73. "active": true,
  74. "percent": 15
  75. }
  76. ]
  77. }
  78. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement