Guest User

Untitled

a guest
Jan 20th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. // 200 or 201 response for single object
  2. data:{
  3.  
  4. },
  5. status: 'success',
  6. status_code: 200,
  7. message: 'Account Creation Successful',
  8.  
  9. // 200 or 201 response for array of objects
  10. data:[],
  11. status: 'success',
  12. status_code: 200,
  13. message: 'Account Creation Successful',
  14.  
  15. // 422 response for failed validations
  16. errors:[
  17. email: ['Email has already been taken'],
  18. password: ['Password is too short']
  19. ],
  20. status: 'failed',
  21. status_code: 422,
  22. message: 'Validation Failed',
  23.  
  24. // 401 response for unauthorized
  25. status: 'failed',
  26. status_code: 401,
  27. message: 'You are not authorized to carry out this action',
  28.  
  29. // 404 response for not found
  30. status: 'failed',
  31. status_code: 404,
  32. message: 'Not found'
  33.  
  34. //others
Add Comment
Please, Sign In to add comment